summaryrefslogtreecommitdiff
path: root/examples/pybullet/gym/pybullet_data/sphere_small.urdf
blob: c5712bc35789f1333797ca4e512ab1624b2bdb4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="0.0" ?>
<robot name="urdf_robot">
  <link name="base_link">
    <contact>
      <rolling_friction value="0.001"/>
      <spinning_friction value="0.001"/>
    </contact>
    <inertial>
      <origin rpy="0 0 0" xyz="0 0 0"/>
       <mass value=".1"/>
       <inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1"/>
    </inertial>
    <visual>
      <origin rpy="0 0 0" xyz="0 0 0"/>
      <geometry>
				<mesh filename="textured_sphere_smooth.obj" scale="0.03 0.03 0.03"/>      
      </geometry>
      <material name="white">
        <color rgba="1 1 1 1"/>
      </material>
    </visual>
    <collision>
      <origin rpy="0 0 0" xyz="0 0 0"/>
      <geometry>
	 <sphere radius="0.03"/>
      </geometry>
    </collision>
  </link>
</robot>