diff options
| author | Greg Ercolano <erco@seriss.com> | 2018-05-24 18:02:55 +0000 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2018-05-24 18:02:55 +0000 |
| commit | 2694217d768033bae1c73aa6c8112a13693a3efb (patch) | |
| tree | e794d65874da1aec6b8c72735aa726a5aaea11d9 /FL/fl_draw.H | |
| parent | a4ff075c29fada06f492ba039ecb05935e5449c9 (diff) | |
Extra refs for fl_pie/fl_arc diagrams..
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12934 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/fl_draw.H')
| -rw-r--r-- | FL/fl_draw.H | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/FL/fl_draw.H b/FL/fl_draw.H index 9783f45d0..b7a1c4d49 100644 --- a/FL/fl_draw.H +++ b/FL/fl_draw.H @@ -303,6 +303,9 @@ inline void fl_yxline(int x, int y, int y1, int x2, int y3) {fl_graphics_driver- \param[in] a1,a2 start and end angles of arc measured in degrees counter-clockwise from 3 o'clock. \p a2 must be greater than or equal to \p a1. + + \image html fl_pie_arc_diagram.png "fl_pie() and fl_arc()" + \image latex fl_pie_arc_diagram.png "fl_pie() and fl_arc()" width=4cm */ inline void fl_arc(int x, int y, int w, int h, double a1, double a2) {fl_graphics_driver->arc(x,y,w,h,a1,a2); } /** @@ -316,6 +319,9 @@ inline void fl_arc(int x, int y, int w, int h, double a1, double a2) {fl_graphic \param[in] a1,a2 start and end angles of arc measured in degrees counter-clockwise from 3 o'clock. \p a2 must be greater than or equal to \p a1. + + \image html fl_pie_arc_diagram.png "fl_pie() and fl_arc()" + \image latex fl_pie_arc_diagram.png "fl_pie() and fl_arc()" width=4cm */ inline void fl_pie(int x, int y, int w, int h, double a1, double a2) {fl_graphics_driver->pie(x,y,w,h,a1,a2); } /** fl_chord declaration is a place holder - the function does not yet exist */ |
