vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Sphere.h
Go to the documentation of this file.
1 #ifndef Sphere_h
2 #define Sphere_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 Sphere : public BaseActor
16  {
17  public:
18  Sphere();
19  ~Sphere();
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  void Create();
26  NxSphereShapeDesc _sphereDesc;
27  };
28 }
29 
30 #endif