-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2link_robot.urdf
More file actions
56 lines (45 loc) · 1.02 KB
/
2link_robot.urdf
File metadata and controls
56 lines (45 loc) · 1.02 KB
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
<?xml version="1.0"?>
<robot name="2link_robot">
<material name="black">
<color rgba="0 0 0 0.7"/>
</material>
<material name="white">
<color rgba="1 1 1 0.7"/>
</material>
<link name="base"/>
<link name="arm1">
<visual>
<geometry>
<box size="1 .05 .05"/>
</geometry>
<origin rpy="0 0 0" xyz="0.5 0 0"/>
<material name="black"/>
</visual>
</link>
<joint name="baseHinge" type="continuous">
<axis rpy="0 0 0" xyz="0 0 1"/>
<parent link="base"/>
<child link="arm1"/>
</joint>
<link name="arm2">
<visual>
<geometry>
<box size="1 .05 .05"/>
</geometry>
<origin rpy="0 0 0" xyz="0.5 0 0"/>
<material name="white"/>
</visual>
</link>
<joint name="interArm" type="continuous">
<axis rpy="0 0 0" xyz="0 0 1"/>
<parent link="arm1"/>
<child link="arm2"/>
<origin rpy="0 0 0" xyz="1 0 0"/>
</joint>
<link name="endEffector"/>
<joint name="ee_joint" type="fixed">
<parent link="arm2"/>
<child link="endEffector"/>
<origin rpy="0 0 0" xyz="1 0 0"/>
</joint>
</robot>