This repository was archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathsingle_revolute_test.world
72 lines (70 loc) · 1.89 KB
/
single_revolute_test.world
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
<?xml version="1.0" ?>
<sdf version="1.4">
<world name="default">
<model name="model">
<pose>0.0 0.0 10.1 0 0.0 0.0</pose>
<link name="link_1">
<inertial>
<pose>0.0 0.0 -10.0 0.0 0.0 0.0</pose>
<inertia>
<ixx>1e-1</ixx>
<ixy>0.0</ixy>
<ixz>0.0</ixz>
<iyy>1e-1</iyy>
<iyz>0.0</iyz>
<izz>1e-1</izz>
</inertia>
<mass>10.0</mass>
</inertial>
<visual name="visual_cylinder">
<pose>0.0 0.0 -5.0 0.0 0.0 0.0</pose>
<geometry>
<cylinder>
<radius>0.05</radius>
<length>10.0</length>
</cylinder>
</geometry>
<material>
<script>Gazebo/Green</script>
</material>
</visual>
<collision name="collision_cylinder">
<pose>0.0 0.0 -5.0 0.0 0.0 0.0</pose>
<max_contacts>250</max_contacts>
<geometry>
<cylinder>
<radius>0.05</radius>
<length>10.0</length>
</cylinder>
</geometry>
</collision>
<visual name="visual_sphere">
<pose>0.0 0.0 -10.0 0.0 0.0 0.0</pose>
<geometry>
<sphere>
<radius>0.1</radius>
</sphere>
</geometry>
<material>
<script>Gazebo/Red</script>
</material>
</visual>
<collision name="collision_sphere">
<pose>0.0 0.0 -10.0 0.0 0.0 0.0</pose>
<geometry>
<sphere>
<radius>0.1</radius>
</sphere>
</geometry>
</collision>
</link>
<joint name="joint" type="revolute">
<parent>world</parent>
<child>link_1</child>
<axis>
<xyz>1.0 0.0 0.0</xyz>
</axis>
</joint>
</model>
</world>
</sdf>