You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/ikfast/ikfast_tutorial.rst
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,8 @@ The following command will ensure that you can run docker with your user account
42
42
43
43
You need to log off/log on in order to actually activate this permission change.
44
44
45
+
Note: To run docker from `WSL2 <https://docs.microsoft.com/en-us/windows/wsl/install-win10>`_, you need to install the `Docker Desktop WSL 2 backend <https://docs.docker.com/docker-for-windows/wsl>`_.
46
+
45
47
Install the MoveIt IKFast package either from Debian packages or from source.
46
48
47
49
**Binary Install**: ::
@@ -61,7 +63,7 @@ Creating the IKFast MoveIt plugin
61
63
62
64
To facilitate copy-and-paste, we suggest to define the robot name as an environment variable: ::
63
65
64
-
export MYROBOT_NAME="panda_arm"
66
+
export MYROBOT_NAME="panda"
65
67
66
68
OpenRAVE uses Collada instead of URDF to describe the robot. In order to automatically convert your robot's URDF to Collada, you need to provide the .urdf file.
67
69
If your .urdf file is generated from `xacro <http://wiki.ros.org/xacro/>`_ files, you can generate the URDF using the following command: ::
@@ -85,6 +87,7 @@ To generate the IKFast MoveIt plugin, issue the following command: ::
Replace the last three positional parameters with the correct ``planning_group_name`` as well as the names of the base link and the end-effector link of your robot.
88
91
The speed and success of this process will depend on the complexity of your robot. A typical 6 DOF manipulator with 3 intersecting axes at the base or wrist will take only a few minutes to generate the solver code. For a detailed explanation of the creation procedure and additional tweaks of the process, see `Tweaking the creation process`_.
89
92
90
93
The command above creates a new ROS package named ``$MYROBOT_NAME_<planning_group_name>_ikfast_plugin`` within the current folder.
@@ -101,11 +104,13 @@ The IKFast plugin can be used as a drop-in replacement for the default KDL IK So
0 commit comments