From dc95cd55c0513539c11ab1180219ab2cbcd802e1 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Sun, 21 Jul 2024 19:54:50 -0700 Subject: [PATCH] Further removal of fl_line_style() asciiart (#1016) --- documentation/src/drawing.dox | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/documentation/src/drawing.dox b/documentation/src/drawing.dox index 809f9751b..13fc9262c 100644 --- a/documentation/src/drawing.dox +++ b/documentation/src/drawing.dox @@ -451,17 +451,17 @@ line. If you don't specify a cap or join type you will get a system-defined default of whatever value is fastest. \par -\li FL_SOLID      ━━━━━━━━━ -\li FL_DASH       ━ ━ ━ ━ ━ -\li FL_DOT        · · · · · -\li FL_DASHDOT    ━ · ━ · ━ · -\li FL_DASHDOTDOT ━ · · ━ · · -\li FL_CAP_FLAT -\li FL_CAP_ROUND -\li FL_CAP_SQUARE (extends past end point 1/2 line width) -\li FL_JOIN_MITER (pointed) -\li FL_JOIN_ROUND -\li FL_JOIN_BEVEL (flat) +\li FL_SOLID solid line +\li FL_DASH 75% dashed line +\li FL_DOT 50% pixel dotted +\li FL_DASHDOT dash / dot pattern +\li FL_DASHDOTDOT dash / two dot pattern +\li FL_CAP_FLAT end is flat +\li FL_CAP_ROUND end is round +\li FL_CAP_SQUARE extends past end point 1/2 line width +\li FL_JOIN_MITER line join extends to a point +\li FL_JOIN_ROUND line join is rounded +\li FL_JOIN_BEVEL line join is flat (tidied) \par \p width is the number of \ref drawing_DrawingUnit "FLTK units" thick to draw the lines.