diff options
| author | Fabien Costantini <fabien@onepost.net> | 2009-03-24 01:40:44 +0000 |
|---|---|---|
| committer | Fabien Costantini <fabien@onepost.net> | 2009-03-24 01:40:44 +0000 |
| commit | 15489bda1b2c9a4db82965a85634674d5d7f2dbe (patch) | |
| tree | 0bd04bb1d127ad7aca0d09141993c32a20c2eb10 /src/fl_arci.cxx | |
| parent | 2fb4b11e9140cbf7bc19c566c71cdb935296b4e3 (diff) | |
Major documentation update including: now html doc API is sorted, navigation problems/side effects fixed, html tags replaced by proper doxygen commands, parameters command switched from a to p. Includes a pdf update.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6716 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_arci.cxx')
| -rw-r--r-- | src/fl_arci.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fl_arci.cxx b/src/fl_arci.cxx index eeae098b9..a9d25f0ed 100644 --- a/src/fl_arci.cxx +++ b/src/fl_arci.cxx @@ -57,8 +57,8 @@ If a complete circle is drawn it will fit inside the passed bounding box. The two angles are measured in degrees counterclockwise from 3 o'clock and - are the starting and ending angle of the arc, \a a2 must be greater or equal - to \a a1. + are the starting and ending angle of the arc, \p a2 must be greater or equal + to \p a1. fl_arc() draws a series of lines to approximate the arc. Notice that the integer version of fl_arc() has a different number of arguments than the @@ -66,8 +66,8 @@ \param[in] x,y,w,h bounding box of complete circle \param[in] a1,a2 start and end angles of arc measured in degrees - counter-clockwise from 3 o'clock. \a a2 must be greater - than or equal to \a a1. + counter-clockwise from 3 o'clock. \p a2 must be greater + than or equal to \p a1. */ void fl_arc(int x,int y,int w,int h,double a1,double a2) { if (w <= 0 || h <= 0) return; @@ -111,8 +111,8 @@ void fl_arc(int x,int y,int w,int h,double a1,double a2) { \param[in] x,y,w,h bounding box of complete circle \param[in] a1,a2 start and end angles of arc measured in degrees - counter-clockwise from 3 o'clock. \a a2 must be greater - than or equal to \a a1. + counter-clockwise from 3 o'clock. \p a2 must be greater + than or equal to \p a1. */ void fl_pie(int x,int y,int w,int h,double a1,double a2) { if (w <= 0 || h <= 0) return; |
