1
0

JointFreeDrag.h 359 B

12345678910111213141516171819
  1. #pragma once
  2. #ifndef __JointFreeDrag_H__
  3. #define __JointFreeDrag_H__
  4. #include "AdmittanceBasic.h"
  5. class JointFreeDrag : public AdmittanceBasic
  6. {
  7. public:
  8. void Init();
  9. void LoadData(WayPoint curWayPt, FTData curForce, WayPoint refWayPt);
  10. void GetActualTarget(WayPoint& wayPoint);
  11. void RefreshAdmittancePara();
  12. private:
  13. };
  14. #endif
  15. #pragma once