00001 #ifndef BOX_H_ 00002 #define BOX_H_ 00003 #include "Object.h" 00004 #define box new Box 00005 00009 class Box : public Object { 00010 private: 00015 double width; 00020 double height; 00024 double depth; 00025 00026 public: 00030 Box(double width, double height, double depth, Material* mat = 0); 00031 00035 void draw(); 00036 00040 virtual ~Box(); 00041 }; 00042 00043 #endif /*BOX_H_*/