fl_line_style() diagrams replace ascii art (#1016)

This commit is contained in:
Greg Ercolano 2024-07-20 12:55:27 -07:00
parent e64e708345
commit 7f998bac60
2 changed files with 12 additions and 5 deletions

View File

@ -223,6 +223,9 @@ inline void fl_point(int x, int y) {
If you change this it is your responsibility to set it back to the default If you change this it is your responsibility to set it back to the default
using \c fl_line_style(0). using \c fl_line_style(0).
\image html fl_line_style.png "fl_line_style() styles"
\image latex fl_line_style.png "fl_line_style() styles" width=4cm
\param[in] style A bitmask which is a bitwise-OR of \ref LineStyles "Line Styles", \param[in] style A bitmask which is a bitwise-OR of \ref LineStyles "Line Styles",
a cap style, and a join style. If you don't specify a dash type you a cap style, and a join style. If you don't specify a dash type you
will get a solid line. If you don't specify a cap or join type will get a solid line. If you don't specify a cap or join type
@ -251,12 +254,16 @@ inline void fl_line_style(int style, int width = 0, char *dashes = 0) {
} }
/// \anchor LineStyles /// \anchor LineStyles
///
/// \image html fl_line_style.png "fl_line_style() styles"
/// \image latex fl_line_style.png "fl_line_style() styles" width=4cm
///
enum { enum {
FL_SOLID = 0, ///< line style: <tt>___________</tt> FL_SOLID = 0, ///< line style: solid line
FL_DASH = 1, ///< line style: <tt>_ _ _ _ _ _</tt> FL_DASH = 1, ///< line style: 75% dashed line
FL_DOT = 2, ///< line style: <tt>. . . . . .</tt> FL_DOT = 2, ///< line style: 50% pixel dotted
FL_DASHDOT = 3, ///< line style: <tt>_ . _ . _ .</tt> FL_DASHDOT = 3, ///< line style: dash / dot pattern
FL_DASHDOTDOT = 4, ///< line style: <tt>_ . . _ . .</tt> FL_DASHDOTDOT = 4, ///< line style: dash / two dot pattern
FL_CAP_FLAT = 0x100, ///< cap style: end is flat FL_CAP_FLAT = 0x100, ///< cap style: end is flat
FL_CAP_ROUND = 0x200, ///< cap style: end is round FL_CAP_ROUND = 0x200, ///< cap style: end is round

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB