Last active
September 19, 2022 14:12
-
-
Save harderthan/fa62efe1402000b081319297a9d8f0bd to your computer and use it in GitHub Desktop.
URDF Link Tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link name="my_link"> | |
<inertial> | |
<origin xyz="0 0 0.5" rpy="0 0 0"/> | |
<mass value="1"/> | |
<inertia ixx="100" ixy="0" ixz="0" iyy="100" iyz="0" izz="100" /> | |
</inertial> | |
<visual> | |
<origin xyz="0 0 0" rpy="0 0 0" /> | |
<geometry> | |
<box size="1 1 1" /> | |
</geometry> | |
<material name="Cyan"> | |
<color rgba="0 1.0 1.0 1.0"/> | |
</material> | |
</visual> | |
<collision> | |
<origin xyz="0 0 0" rpy="0 0 0"/> | |
<geometry> | |
<cylinder radius="1" length="0.5"/> | |
</geometry> | |
</collision> | |
</link> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment