pmc/include/cube.h
changeset 34 4a35f239fe5b
parent 9 c3fecc82ade6
child 42 83b8151b966d
equal deleted inserted replaced
33:5e0a954f7c0b 34:4a35f239fe5b
    13 class Cube:public Vector {
    13 class Cube:public Vector {
    14   public:
    14   public:
    15     Vector * P[8];
    15     Vector * P[8];
    16     int height;
    16     int height;
    17 
    17 
    18       Cube (Vector p1, Vector p2, Vector p3, Vector p4, int h);
    18     Cube (Vector p1, Vector p2, Vector p3, Vector p4, int h);
    19       virtual ~ Cube ();
    19     virtual ~ Cube ();
    20     void show ();
    20     void show ();
    21     void move (Vector);
    21     void move (Vector);
    22 };
    22 };
    23 
       
    24 #endif
    23 #endif