00001 #ifndef _rotation_hh_ 00002 #define _rotation_hh_ 00003 00004 #include "vector.hh" 00005 #include "ability.hh" 00006 00007 namespace anoid { 00008 namespace plugin { 00009 00014 class Rotation: virtual public base::Ability { 00015 protected: 00016 double rotation[16]; 00017 public: 00018 virtual double* getRotation(); 00019 virtual void redraw(); 00020 virtual void init(config::Configuration &c); 00021 }; 00022 00023 }; 00024 }; 00025 00026 #endif