vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ForceField.h
Go to the documentation of this file.
1 #ifndef BaseForceField_h
2 #define BaseForceField_h
3 
4 #include "BasePhysXObject.h"
5 
6 namespace PhysXPlugin
7 {
8 
9  class ForceField : public BasePhysXObject
10  {
11  public:
12  ForceField();
13  virtual ~ForceField(){}
14 
15  std::string getAcceptableMessages(void) {return "PhysXForceField";}
16 
17  virtual bool loadXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *parametersNode);
18  //virtual XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *getXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *);
19  protected:
20 
21  void Create();
22 
23  NxForceFieldDesc _forceFieldDesc;
24  NxForceFieldLinearKernelDesc _forceFieldLinearKernelDesc;
25  };
26 
27 }
28 
29 #endif