00001 #ifndef FIGURECUTTINGCUBEMODEL_H_ 00002 #define FIGURECUTTINGCUBEMODEL_H_ 00003 00004 #include "figureCuttingModel.h" 00005 00006 class figureCuttingCubeModel : public figureCuttingModel 00007 { 00008 public: 00009 figureCuttingCubeModel(); 00010 virtual ~figureCuttingCubeModel(); 00011 virtual bool IfPointInside(double x, double y, double z); 00012 virtual double GetTheoricVolume(); 00013 virtual const char *GetName(); 00014 private: 00015 protected: 00016 }; 00017 00018 #endif /*FIGURECUTTINGCUBEMODEL_H_*/