1 | initial version |
Following chapulina's answer, my URDF joint looks like this:
<link name="world"/>
<joint name="joint_base_world" type="fixed">
<child link="base_link" />
<parent link="world" />
<origin xyz="0 0 0.5" />
</joint>
An explicit definition of the world frame is necessary when using URDF's. This joint stabilizes my robot and makes it float at 0.5 m from the ground.
2 | No.2 Revision |
Following chapulina's answer, my URDF joint looks like this:
<link name="world"/>
<joint name="joint_base_world" type="fixed">
<child link="base_link" />
<parent link="world" />
<origin xyz="0 0 0.5" 0" />
</joint>
An explicit definition of the world frame is necessary when using URDF's. This joint stabilizes my robot and makes it float fixed at 0.5 m from the ground.zero position.