summaryrefslogtreecommitdiffstats
path: root/kue/sphere.h
diff options
context:
space:
mode:
Diffstat (limited to 'kue/sphere.h')
-rw-r--r--kue/sphere.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/kue/sphere.h b/kue/sphere.h
new file mode 100644
index 00000000..f106142e
--- /dev/null
+++ b/kue/sphere.h
@@ -0,0 +1,11 @@
+#ifndef _SPHERE_H
+#define _SPHERE_H
+
+
+// Draws a sphere
+class sphere {
+ public:
+ static void draw(double x, double y, double radius, double rot_x, double rot_y);
+};
+
+#endif