sphere2_rolling_friction.urdf 718 B

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