forked from bulletphysics/bullet3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpantilt.urdf
More file actions
executable file
·44 lines (39 loc) · 1.21 KB
/
Copy pathpantilt.urdf
File metadata and controls
executable file
·44 lines (39 loc) · 1.21 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
<?xml version="1.0"?>
<robot name="pan_tilt">
<link name="base_link">
<inertial>
<mass value="1"/>
<origin rpy="0 0 0" xyz="0.0 0.0 0.0"/>
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0"/>
</inertial>
</link>
<joint name="pan_joint" type="revolute">
<parent link="base_link"/>
<child link="pan_link"/>
<origin xyz="0 0 0.1"/>
<axis xyz="0 0 1" />
<limit effort="300" velocity="0.1" lower="-3.14" upper="3.14"/>
<dynamics damping="50" friction="1"/>
</joint>
<link name="pan_link">
<inertial>
<mass value="1"/>
<origin rpy="0 0 0" xyz="0 0 1"/>
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0"/>
</inertial>
</link>
<joint name="tilt_joint" type="revolute">
<parent link="pan_link"/>
<child link="tilt_link"/>
<origin rpy="0.0 0.0 0.0" xyz="4 0 1"/>
<axis xyz="0.0 1.0 0.0" />
<limit effort="300" velocity="1.0" lower="-4.64" upper="4.64"/>
</joint>
<link name="tilt_link">
<inertial>
<mass value="5"/>
<origin rpy="0 0 0" xyz="1.001 1 1"/>
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0"/>
</inertial>
</link>
</robot>