plane_implicit.urdf 907 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="0.0" ?>
  2. <robot name="plane">
  3. <link name="planeLink">
  4. <contact>
  5. <!--<friction_anchor/>-->
  6. <lateral_friction value="1."/>
  7. <rolling_friction value="0.0"/>
  8. <stiffness value="30000"/>
  9. <damping value="10000"/>
  10. </contact>
  11. <inertial>
  12. <origin rpy="0 0 0" xyz="0 0 0"/>
  13. <mass value=".0"/>
  14. <inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/>
  15. </inertial>
  16. <visual>
  17. <origin rpy="0 0 0" xyz="0 0 0"/>
  18. <geometry>
  19. <mesh filename="plane100.obj" scale="1 1 1"/>
  20. </geometry>
  21. <material name="white">
  22. <color rgba="1 1 1 1"/>
  23. </material>
  24. </visual>
  25. <collision>
  26. <origin rpy="0 0 0" xyz="0 0 0"/>
  27. <!--<origin rpy="0 0 0" xyz="0 0 -5"/>-->
  28. <geometry>
  29. <plane normal="0 0 1"/>
  30. <!--<box size="100 100 10"/>-->
  31. </geometry>
  32. </collision>
  33. </link>
  34. </robot>