Skip to content

Commit fff33d2

Browse files
authored
Update indigo documentation to melodic (#540)
1 parent d297f90 commit fff33d2

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

doc/motion_planning_api/src/motion_planning_api_tutorial.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ int main(int argc, char** argv)
6969
// to use.
7070
//
7171
// .. _RobotModelLoader:
72-
// http://docs.ros.org/indigo/api/moveit_ros_planning/html/classrobot__model__loader_1_1RobotModelLoader.html
72+
// http://docs.ros.org/melodic/api/moveit_ros_planning/html/classrobot__model__loader_1_1RobotModelLoader.html
7373
const std::string PLANNING_GROUP = "panda_arm";
7474
robot_model_loader::RobotModelLoader robot_model_loader("robot_description");
7575
robot_model::RobotModelPtr robot_model = robot_model_loader.getModel();
@@ -173,7 +173,7 @@ int main(int argc, char** argv)
173173
// package.
174174
//
175175
// .. _kinematic_constraints:
176-
// http://docs.ros.org/indigo/api/moveit_core/html/namespacekinematic__constraints.html#a88becba14be9ced36fefc7980271e132
176+
// http://docs.ros.org/melodic/api/moveit_core/html/namespacekinematic__constraints.html#a88becba14be9ced36fefc7980271e132
177177
moveit_msgs::Constraints pose_goal =
178178
kinematic_constraints::constructGoalConstraints("panda_link8", pose, tolerance_pose, tolerance_angle);
179179

doc/motion_planning_pipeline/src/motion_planning_pipeline_tutorial.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ int main(int argc, char** argv)
6363
// parameter server and construct a :moveit_core:`RobotModel` for us to use.
6464
//
6565
// .. _RobotModelLoader:
66-
// http://docs.ros.org/indigo/api/moveit_ros_planning/html/classrobot__model__loader_1_1RobotModelLoader.html
66+
// http://docs.ros.org/melodic/api/moveit_ros_planning/html/classrobot__model__loader_1_1RobotModelLoader.html
6767
robot_model_loader::RobotModelLoader robot_model_loader("robot_description");
6868
robot_model::RobotModelPtr robot_model = robot_model_loader.getModel();
6969

@@ -130,7 +130,7 @@ int main(int argc, char** argv)
130130
// package.
131131
//
132132
// .. _kinematic_constraints:
133-
// http://docs.ros.org/indigo/api/moveit_core/html/namespacekinematic__constraints.html#a88becba14be9ced36fefc7980271e132
133+
// http://docs.ros.org/melodic/api/moveit_core/html/namespacekinematic__constraints.html#a88becba14be9ced36fefc7980271e132
134134
req.group_name = "panda_arm";
135135
moveit_msgs::Constraints pose_goal =
136136
kinematic_constraints::constructGoalConstraints("panda_link8", pose, tolerance_pose, tolerance_angle);

doc/move_group_interface/move_group_interface_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Move Group C++ Interface
33
.. image:: move_group_interface_tutorial_start_screen.png
44
:width: 700px
55

6-
In MoveIt, the simplest user interface is through the :move_group_interface:`MoveGroupInterface` class. It provides easy to use 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. This interface communicates over ROS topics, services, and actions to the `MoveGroup Node <http://docs.ros.org/indigo/api/moveit_ros_move_group/html/annotated.html>`_.
6+
In MoveIt, the simplest user interface is through the :move_group_interface:`MoveGroupInterface` class. It provides easy to use 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. This interface communicates over ROS topics, services, and actions to the `MoveGroup Node <http://docs.ros.org/melodic/api/moveit_ros_move_group/html/annotated.html>`_.
77

88

99
Watch this quick `YouTube video demo <https://youtu.be/_5siHkFQPBQ>`_ to see the power of the move group interface!

0 commit comments

Comments
 (0)