momentumopt
PyKinematicsInterface.hpp
Go to the documentation of this file.
1 
9 #include <memory>
10 #include <Eigen/Eigen>
11 
13 
14 namespace momentumopt {
15 
17  {
18  public:
19  using KinematicsInterface::KinematicsInterface;
20 
21  // trampoline for pure virtual functions
22  void initialize(PlannerSetting& planner_setting) override
23  {
24  PYBIND11_OVERLOAD_PURE(
25  void,
27  initialize,
28  planner_setting
29  );
30  }
31 
32  void displayPosture(const KinematicsState& kin_state, double time_step) override
33  {
34  PYBIND11_OVERLOAD_PURE(
35  void,
37  displayPosture,
38  kin_state,
39  time_step
40  );
41  }
42 
43  KinematicsState updateJacobiansAndState(KinematicsState& kin_state, double dt) override
44  {
45  PYBIND11_OVERLOAD_PURE(
48  updateJacobiansAndState,
49  kin_state,
50  dt
51  );
52  }
53 
54  KinematicsState integratePosture(KinematicsState& kin_state, double dt) override
55  {
56  PYBIND11_OVERLOAD_PURE(
59  integratePosture,
60  kin_state,
61  dt
62  );
63  }
64 
65  KinematicsState differentiatePostures(KinematicsState& start_state, KinematicsState& end_state, double timestep) override
66  {
67  PYBIND11_OVERLOAD_PURE(
70  differentiatePostures,
71  start_state,
72  end_state,
73  timestep
74  );
75  }
76 
77  Eigen::Vector3d logarithmicMap(const Eigen::Vector4d quat_wxyz) override
78  {
79  PYBIND11_OVERLOAD_PURE(
80  Eigen::Vector3d,
82  logarithmicMap,
83  quat_wxyz
84  );
85  }
86  };
87 
88 }
Definition: KinematicsInterface.hpp:24
Definition: PlannerSetting.hpp:22
Definition: PyKinematicsInterface.hpp:16
This class is a container for all variables required to define a kinematics state: joint posture...
Definition: KinematicsState.hpp:146