Skip to content

Instantly share code, notes, and snippets.

@GerardMaggiolino
Created May 16, 2019 02:29
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save GerardMaggiolino/27af954a480d5350164b975371690b95 to your computer and use it in GitHub Desktop.
Save GerardMaggiolino/27af954a480d5350164b975371690b95 to your computer and use it in GitHub Desktop.
A basic plane specified by URDF.
<?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