CreOS SDK
The CreOS SDK allows you to interact with Avular robots
 
Loading...
Searching...
No Matches
get_plan.hpp
Go to the documentation of this file.
1
8namespace nav_msgs::srv {
14class GetPlan {};
22public:
23 // Get a plan from the current position to the goal Pose
24
25 // The start pose for the plan
27
28 // The final pose of the goal position
30
31 // If the goal is obstructed, how many meters the planner can
32 // relax the constraint in x and y before failing.
33 float tolerance;
34};
35
43public:
44 // Array of poses from start to goal if one was successfully found.
45 msg::Path plan;
46};
47} // namespace nav_msgs::srv
ROS message class definition for PoseStamped.
Definition pose_stamped.hpp:15
ROS message class definition for Path.
Definition path.hpp:15
ROS message class definition for GetPlan::Request.
Definition get_plan.hpp:21
ROS message class definition for GetPlan::Response.
Definition get_plan.hpp:42
ROS service class definition for GetPlan.
Definition get_plan.hpp:14
service definitions of the nav_msgs package