vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Rotate.h
Go to the documentation of this file.
1 #ifndef ROTATE_H
2 #define ROTATE_H
3 
4 #include <vrecko/Ability.h>
5 
7 
8 
9 using namespace vrecko;
10 
11 namespace base {
12 
13  class Rotate: public Ability {
14  public:
15  Rotate();
16  ~Rotate() {};
17 
18  void preInitialize(void);
19  void update(void);
20 
21  bool loadXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *parametersNode);
22  XERCES_CPP_NAMESPACE_QUALIFIER DOMNode *saveXMLParameters(XERCES_CPP_NAMESPACE_QUALIFIER DOMDocument *);
23 
24  ParameterVector *getParameterVector(void) {return pParameterVector;}
26 
27  protected:
28  float angle, step;
30  };
31 
32 }
33 
34 #endif