vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Capsule.h
Go to the documentation of this file.
1 #ifndef Capsule_h
2 #define Capsule_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 Capsule : public BaseActor
16  {
17  public:
18  Capsule():BaseActor("PhysX Capsule"){}
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  NxCapsuleShapeDesc _capsuleDesc;
27  };
28 
29 }
30 
31 #endif