Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made call to compute_cartesian_path more pythonic; added links to mov… #96

Closed
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Move Group Python Interface Tutorial
================================================

In MoveIt!, the primary user interface is through the RobotCommander class. It
provides functionality for most operations that a user may want to carry out,
specifically setting joint or pose goals, creating motion plans, moving the
robot, adding objects into the environment and attaching/detaching objects from
the robot.
In MoveIt!, the primary user interface is through `the RobotCommander
and MoveGroupCommander classes
<http://docs.ros.org/kinetic/api/moveit_commander/html/namespacemoveit__commander.html>`_. It
provides functionality for most operations that a user may want to
carry out, specifically setting joint or pose goals, creating motion
plans, moving the robot, adding objects into the environment and
attaching/detaching objects from the robot.

.. tutorial-formatter:: ../move_group_python_interface_tutorial.py

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,9 @@ def move_group_python_interface_tutorial():
## translation. We will specify the jump threshold as 0.0, effectively
## disabling it.
(plan3, fraction) = group.compute_cartesian_path(
waypoints, # waypoints to follow
0.01, # eef_step
0.0) # jump_threshold
waypoints=waypoints,
eef_step=0.01,
jump_threshold=0.0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i love this!


print "============ Waiting while RVIZ displays plan3..."
rospy.sleep(5)
Expand Down