vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Plane.h
Go to the documentation of this file.
1 #ifndef Plane_h
2 #define Plane_h
3 
4 #include <vrecko/Ability.h>
5 #include <osg/Vec3>
6 
7 #include "BaseActor.h"
8 
9 using namespace vrecko;
10 
11 
12 namespace PhysXPlugin
13 {
14 
15  class Plane : public BaseActor
16  {
17  public:
18  Plane();
19  ~Plane(){};
20 
21  bool loadXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *parametersNode);
22  XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *getXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *);
23  protected:
24  void Create();
25 
26  NxPlaneShapeDesc _planeDesc;
27  };
28 
29 }
30 
31 #endif