diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-22 15:35:02 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-11-22 15:35:02 +0000 |
| commit | f5258404959cff3a299c796676b553b843a94355 (patch) | |
| tree | f6820c57e99b0038b9bc734d7123d536a33af267 /src/fl_arc.cxx | |
| parent | 4323f46e2c31bc070036a9923711293f169ffb85 (diff) | |
Fix all references to '.C' files (now .cxx)
Update Fl_Image() class to track depth and data, so FLUID will be
able to use it as the base class.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1712 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_arc.cxx')
| -rw-r--r-- | src/fl_arc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fl_arc.cxx b/src/fl_arc.cxx index 56a2b51d2..56c43a684 100644 --- a/src/fl_arc.cxx +++ b/src/fl_arc.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_arc.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $" +// "$Id: fl_arc.cxx,v 1.4.2.3.2.1 2001/11/22 15:35:01 easysw Exp $" // // Arc functions for the Fast Light Tool Kit (FLTK). // @@ -66,12 +66,12 @@ void fl_arc(double x, double y, double r, double start, double end) { fl_vertex(x+r*cos(E), y-r*sin(E)); } -#if 0 // portable version. X-specific one in fl_vertex.C +#if 0 // portable version. X-specific one in fl_vertex.cxx void fl_circle(double x,double y,double r) { _fl_arc(x, y, r, r, 0, 360); } #endif // -// End of "$Id: fl_arc.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $". +// End of "$Id: fl_arc.cxx,v 1.4.2.3.2.1 2001/11/22 15:35:01 easysw Exp $". // |
