We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b367d0 commit 49358dfCopy full SHA for 49358df
rmf_fleet_adapter_python/src/planner/planner.cpp
@@ -142,6 +142,12 @@ void bind_plan(py::module& m)
142
})
143
.def_property_readonly("graph_index",
144
&Plan::Waypoint::graph_index)
145
+ .def_property_readonly("approach_lanes",
146
+ &Plan::Waypoint::approach_lanes)
147
+ .def_property_readonly("itinerary_index",
148
+ &Plan::Waypoint::itinerary_index)
149
+ .def_property_readonly("trajectory_index",
150
+ &Plan::Waypoint::trajectory_index)
151
.def_property_readonly("event",
152
&Plan::Waypoint::event);
153
0 commit comments