sphere_with_restitution.urdf 801 B

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="0.0" ?>
  2. <robot name="urdf_robot">
  3. <link name="baseLink">
  4. <contact>
  5. <restitution value="0.5" />
  6. <rolling_friction value="0.001"/>
  7. <spinning_friction value="0.001"/>
  8. </contact>
  9. <inertial>
  10. <origin rpy="0 0 0" xyz="0 0 0"/>
  11. <mass value="10.0"/>
  12. <inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1"/>
  13. </inertial>
  14. <visual>
  15. <origin rpy="0 0 0" xyz="0 0 0"/>
  16. <geometry>
  17. <mesh filename="textured_sphere_smooth.obj" scale="0.5 0.5 0.5"/>
  18. </geometry>
  19. <material name="white">
  20. <color rgba="1 1 1 1"/>
  21. </material>
  22. </visual>
  23. <collision>
  24. <origin rpy="0 0 0" xyz="0 0 0"/>
  25. <geometry>
  26. <sphere radius="0.5"/>
  27. </geometry>
  28. </collision>
  29. </link>
  30. </robot>