-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.sdf
32 lines (32 loc) · 861 Bytes
/
box.sdf
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
31
32
<sdf>
<model name="Box">
<pose>0 0 1.5 0 0 0 </pose>
<link name="Box">
<inertial>
<mass>1.0</mass>
<inertia>
<ixx>0.083</ixx>
<ixy>0.0</ixy>
<ixz>0.0</ixz>
<iyy>0.083</iyy>
<iyz>0.0</iyz>
<izz>0.083</izz>
</inertia>
</inertial>
<collision>
<geometry>
<box>
<size>1 2 3</size>
</box>
</geometry>
</collision>
<visual>
<geometry>
<box>
<size>1 2 3</size>
</box>
</geometry>
</visual>
</link>
</model>
</sdf>