mecanum.h 407 B

123456789101112131415161718192021222324
  1. #ifndef __MECANUM_H__
  2. #define __MECANUM_H__
  3. #include "omni_planner/omni_planner.h"
  4. #include "common/common.h"
  5. namespace mecanum
  6. {
  7. class Mecanum : public omni::omniPlanner
  8. {
  9. public:
  10. Mecanum();
  11. ~Mecanum();
  12. virtual common::NavState computeVelocityCommands(common::Point& sta_pose, common::Twist& cmd);
  13. private:
  14. void __readConf();
  15. };
  16. } // namespace mecanum
  17. #endif