From 77e1779f7268179e03e2a42b2eeb6c3fa0f629f7 Mon Sep 17 00:00:00 2001 From: Sebastian Castro <4603398+sea-bass@users.noreply.github.com> Date: Thu, 1 Aug 2024 17:38:34 -0400 Subject: [PATCH] Some more decimal points --- .../pilz_industrial_motion_planner.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/how_to_guides/pilz_industrial_motion_planner/pilz_industrial_motion_planner.rst b/doc/how_to_guides/pilz_industrial_motion_planner/pilz_industrial_motion_planner.rst index beb346a939..707fe32569 100644 --- a/doc/how_to_guides/pilz_industrial_motion_planner/pilz_industrial_motion_planner.rst +++ b/doc/how_to_guides/pilz_industrial_motion_planner/pilz_industrial_motion_planner.rst @@ -439,7 +439,7 @@ creates two target poses that will be reached sequentially. // MotionSequenceItem configuration item1.req.group_name = PLANNING_GROUP; item1.req.planner_id = "LIN"; - item1.req.allowed_planning_time = 5; + item1.req.allowed_planning_time = 5.0; item1.req.max_velocity_scaling_factor = 0.1; item1.req.max_acceleration_scaling_factor = 0.1; @@ -456,9 +456,9 @@ creates two target poses that will be reached sequentially. msg.pose.position.y = -0.2; msg.pose.position.z = 0.6; msg.pose.orientation.x = 1.0; - msg.pose.orientation.y = 0; - msg.pose.orientation.z = 0; - msg.pose.orientation.w = 0; + msg.pose.orientation.y = 0.0; + msg.pose.orientation.z = 0.0; + msg.pose.orientation.w = 0.0; return msg; } (); item1.req.goal_constraints.push_back(kinematic_constraints::constructGoalConstraints("panda_link8", target_pose_item1));