Created
May 16, 2019 02:29
-
-
Save GerardMaggiolino/27af954a480d5350164b975371690b95 to your computer and use it in GitHub Desktop.
A basic plane specified by URDF.
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
<?xml version="1.0"?> | |
<robot name="simpleplane"> | |
<!-- Colors --> | |
<material name="grey"> | |
<color rgba="0.91 0.925 0.945 1"/> | |
</material> | |
<!-- Plane --> | |
<link name="base_link"> | |
<visual> | |
<geometry> | |
<box size="20 20 0.01"/> | |
<origin rpy="0 0 0" xyz="-10 -10 -0.005"/> | |
</geometry> | |
<material name="grey"/> | |
</visual> | |
<collision> | |
<geometry> | |
<box size="20 20 0.01"/> | |
<origin rpy="0 0 0" xyz="-10 -10 -0.005"/> | |
</geometry> | |
</collision> | |
<inertial> | |
<mass value="0"/> | |
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/> | |
</inertial> | |
<contact> | |
<lateral_friction value="4"/> | |
</contact> | |
</link> | |
</robot> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment