]> git.treefish.org Git - phys/latlib.git/blob - culooks_cube.h
...
[phys/latlib.git] / culooks_cube.h
1 #ifndef CULOOKS_CUBE_H
2 #define CULOOKS_CUBE_H
3
4 class cube {
5  public:
6   cube(int l);
7   void draw();
8   int id;
9   float az, alt;
10   float zoom;
11  private:
12   void drawAll();
13   void drawBox();
14   static int allid;
15   float *plaq;
16   float *link;
17   int l;
18 };
19
20 #endif