]> git.treefish.org Git - phys/latlib.git/blobdiff - culooks_cube.h
...
[phys/latlib.git] / culooks_cube.h
diff --git a/culooks_cube.h b/culooks_cube.h
new file mode 100644 (file)
index 0000000..aeaa754
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef CULOOKS_CUBE_H
+#define CULOOKS_CUBE_H
+
+class cube {
+ public:
+  cube(int l);
+  void draw();
+  int id;
+  float az, alt;
+  float zoom;
+ private:
+  void drawAll();
+  void drawBox();
+  static int allid;
+  float *plaq;
+  float *link;
+  int l;
+};
+
+#endif