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