You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.def_prop_rw("angle", &PoseOrder::angle, &PoseOrder::set_angle, "Get or set the orientation angle")
241
248
.def_prop_rw("max_speed_linear", &PoseOrder::max_speed_linear, &PoseOrder::set_max_speed_linear, "Get or set the maximum linear speed (in percent of the robot max speed)")
242
249
.def_prop_rw("max_speed_angular", &PoseOrder::max_speed_angular, &PoseOrder::set_max_speed_angular, "Get or set the maximum angular speed (in percent of the robot max speed)")
243
-
.def_prop_rw("allow_reverse", &PoseOrder::allow_reverse, &PoseOrder::set_allow_reverse, "Get or set if reverse movement is allowed")
250
+
.def_prop_rw("motion_direction", &PoseOrder::motion_direction, &PoseOrder::set_motion_direction, "Get or set the motion direction mode")
244
251
.def_prop_rw("bypass_anti_blocking", &PoseOrder::bypass_anti_blocking, &PoseOrder::set_bypass_anti_blocking, "Get or set if anti-blocking is bypassed")
245
252
.def_prop_rw("bypass_final_orientation", &PoseOrder::bypass_final_orientation, &PoseOrder::set_bypass_final_orientation, "Get or set if final orientation is bypassed")
246
253
.def_prop_rw("timeout_ms", &PoseOrder::timeout_ms, &PoseOrder::set_timeout_ms, "Get or set the timeout in milliseconds for the pose to be reached")
@@ -276,27 +283,27 @@ NB_MODULE(models, m) {
276
283
.def("max_size", &PoseOrderList::max_size, "Get the maximum number of pose orders")
277
284
.def("get", &PoseOrderList::get, "Get PoseOrder at index", "index"_a)
278
285
.def("__getitem__", &PoseOrderList::operator[], "Get PoseOrder at index", "index"_a)
0 commit comments