2
0

sphere_1cm.urdf 508 B

12345678910111213141516171819202122
  1. <?xml version="0.0" ?>
  2. <robot name="urdf_robot">
  3. <link name="base_link">
  4. <contact>
  5. <rolling_friction value="0.001"/>
  6. <spinning_friction value="0.001"/>
  7. </contact>
  8. <inertial>
  9. <origin rpy="0 0 0" xyz="0 0 0"/>
  10. <mass value=".1"/>
  11. <inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1"/>
  12. </inertial>
  13. <collision>
  14. <origin rpy="0 0 0" xyz="0 0 0"/>
  15. <geometry>
  16. <sphere radius="0.005"/>
  17. </geometry>
  18. </collision>
  19. </link>
  20. </robot>