#ifndef _IMGPLANE3_H #define _IMGPLANE3_H #include namespace IMG { class _IMGExport Plane3: public Ogre::Plane { public: //a plane's interface Plane3(); virtual ~Plane3(); Plane3 & operator =(const Plane3 & p); Ogre::Vector3 * getNormal(); void setNormal(float x, float y, float z); void setDistance(float dist); float getDistance() const; void print(); }; } #endif