sphere2.urdf 791 B

1234567891011121314151617181920212223242526272829303132
  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. <specular rgb="11 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>