-
Notifications
You must be signed in to change notification settings - Fork 2
/
robot.urdf
89 lines (79 loc) · 1.97 KB
/
robot.urdf
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<robot name="robot_model">
<link name="base_frame">
<visual>
<geometry>
<box size="0.16 0.16 0.07"/>
</geometry>
<origin rpy="0 0 0" xyz="0 0 0.085"/>
<material name="white">
<color rgba="1 1 1 1"/>
</material>
</visual>
<collision>
<geometry>
<box size="0.20 0.20 0.07"/>
</geometry>
</collision>
</link>
<link name="lwheel">
<visual>
<geometry>
<cylinder length="0.02" radius="0.04"/>
</geometry>
<origin rpy="0 0 0" xyz="0 0 0"/>
<material name="black">
<color rgba="0 0 0 1"/>
</material>
</visual>
</link>
<joint name="base_to_lwheel" type="fixed">
<parent link="base_frame"/>
<child link="lwheel"/>
<origin xyz="0 0.085 0.07" rpy="1.5708 0 0"/>
</joint>
<link name="rwheel">
<visual>
<geometry>
<cylinder length="0.02" radius="0.04"/>
</geometry>
<origin rpy="0 0 0" xyz="0 0 0"/>
<material name="black">
<color rgba="0 0 0 1"/>
</material>
</visual>
</link>
<joint name="base_to_rwheel" type="fixed">
<parent link="base_frame"/>
<child link="rwheel"/>
<origin xyz="0 -0.085 0.07" rpy="-1.5708 0 0"/>
</joint>
<link name="laser">
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<cylinder length="0.01" radius="0.03"/>
</geometry>
</visual>
</link>
<joint name="laser_joint" type="fixed">
<origin rpy="0 0 0" xyz="0.0 0.0 0.125"/>
<parent link="base_frame"/>
<child link="laser"/>
</joint>
<link name="ultrasonic">
<visual>
<origin rpy="0 0 0" xyz="0 0 0"/>
<geometry>
<box size="0.02 0.02 0.02"/>
</geometry>
<material name="red">
<color rgba="1 0 0 0"/>
</material>
</visual>
</link>
<joint name="ultrasonic_joint" type="fixed">
<origin rpy="0 0 0" xyz="0.09 0.0 0.13"/>
<parent link="base_frame"/>
<child link="ultrasonic"/>
</joint>
</robot>