00001 00002 #ifndef _VRSODE_NO_SHAPE_H_ 00003 #define _VRSODE_NO_SHAPE_H_ 00004 00005 #include <ode/ode.h> 00006 00007 #include "Shape.h" 00008 00009 namespace vrsode 00010 { 00014 class NoShape : public Shape 00015 { 00016 public: 00020 NoShape(); 00021 00025 virtual ~NoShape(); 00026 00027 protected: 00028 virtual void createGeometry(); 00029 virtual void createDebugNode(); 00030 }; 00031 00032 } 00033 00034 #endif
1.5.1