sphere2.urdf 758 B

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