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