vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CappedCylinder.h
Go to the documentation of this file.
1 #include <vrecko/Ability.h>
2 #include "DynamicScene.h"
3 
4 using namespace vrecko;
5 
6 namespace ode {
7 
8 class CappedCylinder: public Ability {
9  public:
12 
13  void postInitialize(void);
14  void update(void);
15 
16  bool loadXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *parametersNode);
17  XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *saveXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *);
18 
19  protected:
20  double _radius;
21  double _length;
23  double _density;
24 
26 };
27 
28 }
29