Created
May 16, 2019 02:20
-
-
Save GerardMaggiolino/110aeee56996df4d24ac288d972e4f39 to your computer and use it in GitHub Desktop.
Snippet of completed URDF specified toy car.
This file contains hidden or 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
<!-- 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