Skip to content

Commit 0230665

Browse files
committed
Added comments
1 parent 713f607 commit 0230665

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

turtlebot3_manipulation_example/src/hello_moveit.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Modify the MoveIt tutorial as much as you like using the basic example.
2+
// Author: Sungho Woo
3+
14
#include <memory>
25

36
#include <rclcpp/rclcpp.hpp>
@@ -29,7 +32,8 @@ auto move_group_interface = MoveGroupInterface(node, "arm");
2932
return msg;
3033
}();
3134
move_group_interface.setPoseTarget(target_pose);
32-
move_group_interface.setGoalTolerance(0.01);
35+
move_group_interface.setGoalJointTolerance(0.01);
36+
move_group_interface.setGoalOrientationTolerance(0.01);
3337

3438
// Create a plan to that target pose
3539
auto const [success, plan] = [&move_group_interface]{

turtlebot3_manipulation_teleop/src/turtlebot3_manipulation_teleop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414
//
15-
// Author: Hye-jong KIM
15+
// Author: Hye-jong KIM, Sungho Woo
1616

1717
#include <algorithm>
1818
#include <memory>

0 commit comments

Comments
 (0)