/* Author: Josh Holtrop * DornerWorks screensaver * The LogoBox class */ #ifndef LOGOBOX_H #define LOGOBOX_H #include #include class LogoBox { public: LogoBox(dWorldID world = 0, dSpaceID space = 0); ~LogoBox(); void draw(); const float * const getAABB() const; float getWidth() const; float getHeight() const; float getDepth() const; dBodyID getBody() { return m_body; } dGeomID getGeom() { return m_geom; } protected: dBodyID m_body; dGeomID m_geom; }; #endif