We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b68dee commit ad2deebCopy full SHA for ad2deeb
python/pyxbot2_interface.cpp
@@ -87,6 +87,14 @@ PYBIND11_MODULE(pyxbot2_interface, m) {
87
&XBotInterface::getQIndexFromQName)
88
.def("getVIndexFromVName",
89
&XBotInterface::getVIndexFromVName)
90
+ .def("qToMap",
91
+ py::overload_cast<VecConstRef>(&XBotInterface::qToMap, py::const_))
92
+ .def("vToMap",
93
+ py::overload_cast<VecConstRef>(&XBotInterface::vToMap, py::const_))
94
+ .def("mapToQ",
95
+ py::overload_cast<const JointNameMap&>(&XBotInterface::mapToQ, py::const_))
96
+ .def("mapToV",
97
+ py::overload_cast<const JointNameMap&>(&XBotInterface::mapToV, py::const_))
98
.def("getJointLimits",
99
py::overload_cast<>(&XBotInterface::getJointLimits, py::const_))
100
.def("getVelocityLimits",
0 commit comments