mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 05:10:08 +00:00
7633cfb800
prepare compliant contact work, urdf loading of parameters (see data/cube.urdf)
27 lines
650 B
XML
27 lines
650 B
XML
<?xml version="0.0" ?>
|
|
<robot name="urdf_robot">
|
|
<link name="baseLink">
|
|
<inertial>
|
|
<origin rpy="0 0 0" xyz="0 0 0"/>
|
|
<mass value="10.0"/>
|
|
<inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1"/>
|
|
</inertial>
|
|
<visual>
|
|
<origin rpy="0 0 0" xyz="0 0 0"/>
|
|
<geometry>
|
|
<mesh filename="textured_sphere_smooth.obj" scale="0.5 0.5 0.5"/>
|
|
</geometry>
|
|
<material name="white">
|
|
<color rgba="1 1 1 1"/>
|
|
</material>
|
|
</visual>
|
|
<collision>
|
|
<origin rpy="0 0 0" xyz="0 0 0"/>
|
|
<geometry>
|
|
<sphere radius="0.5"/>
|
|
</geometry>
|
|
</collision>
|
|
</link>
|
|
</robot>
|
|
|