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 #include <vrecko/Ability.h>
2 #include "DynamicScene.h"
3 
4 using namespace vrecko;
5 
6 
7 namespace ode {
8 
9 class Sphere: public Ability {
10  public:
11  Sphere();
12  ~Sphere() {};
13 
14  void postInitialize(void);
15  void update(void);
16 
17  bool loadXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *parametersNode);
18  XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *saveXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *);
19 
20  protected:
21  double _radius;
22  double _density;
23 
25 };
26 
27 }