diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-01-23 21:02:49 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-01-23 21:02:49 +0000 |
| commit | 474de78ac17f4bcf205766ea0393059fbf2ace1e (patch) | |
| tree | 2c87d1bb8f86ca2418459fdc8924f50ae8aeb8ae /src/cfg_gfx/xlib.H | |
| parent | de12eddb59bea9ba529230d14cccf3dbef5518e4 (diff) | |
OpenGL arc and pie drawing (Mmmmh, pie!)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11036 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/cfg_gfx/xlib.H')
| -rw-r--r-- | src/cfg_gfx/xlib.H | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cfg_gfx/xlib.H b/src/cfg_gfx/xlib.H index e83fedb26..d184d617c 100644 --- a/src/cfg_gfx/xlib.H +++ b/src/cfg_gfx/xlib.H @@ -93,6 +93,11 @@ protected: void end_complex_polygon(); void gap(); void circle(double x, double y, double r); + // --- implementation is in src/fl_arc.cxx which includes src/cfg_gfx/xxx_arc.cxx if needed + // using void Fl_Graphics_Driver::arc(double x, double y, double r, double start, double end); + // --- implementation is in src/fl_arci.cxx which includes src/cfg_gfx/xxx_arci.cxx + void arc(int x, int y, int w, int h, double a1, double a2); + void pie(int x, int y, int w, int h, double a1, double a2); }; |
