-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.urdf
73 lines (65 loc) · 1.62 KB
/
test.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
<?xml version="1.0"?>
<robot name="myfirst">
<material name="green">
<color rgba="0 0.8 0 1"/>
</material>
<material name="black">
<color rgba="0 0 0 1"/>
</material>
<material name="gold">
<color rgba="0.5 0.5 0.5 1"/>
</material>
<link name="base_link">
<visual>
<geometry>
<box size=".6 .6 .3"/>
</geometry>
<material name="green"/>
<origin rpy="0 0 0" xyz="0 0 0.2"/>
</visual>
<collision>
<geometry>
<cylinder length="0.6" radius="0.5"/>
</geometry>
</collision>
</link>
<link name="fr">
<visual>
<geometry>
<box size=".01 .01 .01"/>
</geometry>
<origin rpy="1.55 0.1 0.3" xyz=".37 0 0.35"/>
</visual>
</link>
<link name="ff">
<visual>
<geometry>
<box size=".01 .01 .01"/>
</geometry>
<origin rpy="1.55 0.2 0.3" xyz=".37 0 0.35"/>
</visual>
</link>
<link name="fl">
<visual>
<geometry>
<box size=".01 .01 .01"/>
</geometry>
<origin rpy="1.55 0.3 0.3" xyz=".37 0 0.35"/>
</visual>
</link>
<joint name="mount_to_fr" type="fixed">
<parent link="base_link"/>
<child link="fr"/>
<origin rpy="1.55 0.1 -1" xyz=".37 0 0.35"/>
</joint>
<joint name="mount_to_ff" type="fixed">
<parent link="base_link"/>
<child link="ff"/>
<origin rpy="1.55 0.1 0" xyz=".37 0 0.35"/>
</joint>
<joint name="mount_to_fl" type="fixed">
<parent link="base_link"/>
<child link="fl"/>
<origin rpy="1.55 0.1 1" xyz=".37 0 0.35"/>
</joint>
</robot>