Skip to content

Instantly share code, notes, and snippets.

@GerardMaggiolino
Created May 16, 2019 02:20
Show Gist options
  • Save GerardMaggiolino/110aeee56996df4d24ac288d972e4f39 to your computer and use it in GitHub Desktop.
Save GerardMaggiolino/110aeee56996df4d24ac288d972e4f39 to your computer and use it in GitHub Desktop.
Snippet of completed URDF specified toy car.
<!-- Left Front Wheel -->
<link name="left_front_wheel">
<visual>
<geometry>
<cylinder length="0.05" radius="0.1"/>
</geometry>
<origin rpy="1.57075 1.57075 0"/>
<material name="black"/>
</visual>
<collision>
<geometry>
<cylinder length="0.05" radius="0.1"/>
</geometry>
<origin rpy="1.57075 1.57075 0"/>
</collision>
<inertial>
<origin rpy="1.57075 1.57075 0"/>
<mass value="0.3"/>
<inertia ixx="0.4" ixy="0" ixz="0" iyy="0.4" iyz="0.0" izz="0.2"/>
</inertial>
</link>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment