summaryrefslogtreecommitdiffstats
path: root/kue/disc.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/disc.h')
-rw-r--r--kue/disc.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/kue/disc.h b/kue/disc.h
new file mode 100644
index 00000000..9c937d81
--- /dev/null
+++ b/kue/disc.h
@@ -0,0 +1,15 @@
+#ifndef _DISC_H
+#define _DISC_H
+
+#include <math.h>
+
+#ifndef M_PI
+#define M_PI 3.14159
+#endif
+
+class disc {
+ public:
+ static void draw(double x, double y, double radius);
+};
+
+#endif