summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-05-03 12:49:36 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-05-03 12:49:36 +0000
commite2f9b55715533ca1e00d07bc6616a182383c2bb0 (patch)
treec277216b3f73fb9ec73951ead3f5ae7ebaa2152d
parentc3dd2a48ad784ad4c2e866c781648127179b9da5 (diff)
Remove debug statement in arc code..
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2185 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/fl_arc.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/fl_arc.cxx b/src/fl_arc.cxx
index 6c7929a9b..27bdaf4f4 100644
--- a/src/fl_arc.cxx
+++ b/src/fl_arc.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_arc.cxx,v 1.4.2.3.2.3 2002/05/03 01:18:15 easysw Exp $"
+// "$Id: fl_arc.cxx,v 1.4.2.3.2.4 2002/05/03 12:49:36 easysw Exp $"
//
// Arc functions for the Fast Light Tool Kit (FLTK).
//
@@ -29,7 +29,6 @@
#include <FL/fl_draw.H>
#include <FL/math.h>
-#include <stdio.h>
void fl_arc(double x, double y, double r, double start, double end) {
@@ -52,7 +51,6 @@ void fl_arc(double x, double y, double r, double start, double end) {
if (n < 2) n = 2;
if (n > 60) n = 60;
}
- printf("n = %d\n", n);
double epsilon = 1.0/n;
double E = end*(M_PI/180);
int i = int((E-A)*n);
@@ -76,5 +74,5 @@ void fl_circle(double x,double y,double r) {
#endif
//
-// End of "$Id: fl_arc.cxx,v 1.4.2.3.2.3 2002/05/03 01:18:15 easysw Exp $".
+// End of "$Id: fl_arc.cxx,v 1.4.2.3.2.4 2002/05/03 12:49:36 easysw Exp $".
//