Skip to content

Commit

Permalink
Changed target_pose for "Planning Around Objects" tutorial (moveit#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shobuj-Paul authored and sjahr committed Oct 26, 2023
1 parent 91e1ac7 commit 438e741
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ First, update the target pose with the following change to make the robot plan t

.. code-block:: C++

// Set a target Pose
// Set a target Pose with updated values !!!
auto const target_pose = [] {
geometry_msgs::msg::Pose msg;
msg.orientation.w = 1.0;
msg.position.x = 0.28;
msg.position.y = 0.4; // <---- This value was changed
msg.position.z = 0.5;
msg.orientation.y = 0.8;
msg.orientation.w = 0.6;
msg.position.x = 0.1;
msg.position.y = 0.4;
msg.position.z = 0.4;
return msg;
}();
move_group_interface.setPoseTarget(target_pose);
Expand Down

0 comments on commit 438e741

Please sign in to comment.