source: GTP/trunk/Lib/Illum/IBRBillboardCloudTrees/OGRE/include/IMG/IMGPlane3.h @ 731

Revision 731, 434 bytes checked in by igarcia, 18 years ago (diff)
Line 
1#ifndef _IMGPLANE3_H
2#define _IMGPLANE3_H
3
4#include <IMGPrerequisites.h>
5
6namespace IMG {
7
8class _IMGExport Plane3: public Ogre::Plane {
9  public:
10    //a plane's interface
11    Plane3();
12
13    virtual ~Plane3();
14
15    Plane3 & operator =(const Plane3 & p);
16
17        Ogre::Vector3 * getNormal();
18
19    void setNormal(float x, float y, float z);
20
21    void setDistance(float dist);
22
23    float getDistance() const;
24
25    void print();
26
27};
28
29}
30#endif
Note: See TracBrowser for help on using the repository browser.