InertialTrajProcess.h 336 B

1234567891011121314151617181920
  1. #pragma once
  2. #ifndef _inertialtrajprocess_h_
  3. #define _inertialtrajprocess_h_
  4. #include <iostream>
  5. class InertialTrajProcess
  6. {
  7. public:
  8. InertialTrajProcess();
  9. void TrajRotate(int* pos);
  10. void TrajRotate(int *pos, float rotateMatrix[4]);
  11. void ResetHeading(int heading);
  12. private:
  13. int shoesPos[3];
  14. float curheading;
  15. };
  16. #endif