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 pathconcave_submesh_no_collision_test.world
70 lines (63 loc) · 1.75 KB
/
concave_submesh_no_collision_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
<?xml version="1.0" ?>
<sdf version="1.4">
<world name="default">
<model name="polaris_ranger_ev">
<static>true</static>
<link name="chassis">
<visual name="visual">
<geometry>
<mesh>
<uri>model://polaris_ranger_ev/meshes/polaris.dae</uri>
<submesh>
<name>Ranger</name>
<center>false</center>
</submesh>
</mesh>
</geometry>
</visual>
<collision name="collision">
<geometry>
<mesh>
<uri>model://polaris_ranger_ev/meshes/polaris.dae</uri>
<submesh>
<name>Ranger</name>
<center>false</center>
</submesh>
</mesh>
</geometry>
</collision>
</link>
</model>
<model name="hokuyo">
<static>true</static>
<pose>-2 0 0 0 0 0</pose>
<link name="link">
<inertial>
<mass>0.1</mass>
</inertial>
<sensor name="laser" type="ray">
<pose>0.01 0 0.20 0 -0 0</pose>
<ray>
<scan>
<horizontal>
<samples>20</samples>
<resolution>1</resolution>
<min_angle>-0.8</min_angle>
<max_angle>0.8</max_angle>
</horizontal>
</scan>
<range>
<min>0.08</min>
<max>10</max>
<resolution>0.01</resolution>
</range>
</ray>
<plugin name="laser" filename="libRayPlugin.so" />
<always_on>1</always_on>
<update_rate>30</update_rate>
<visualize>true</visualize>
</sensor>
</link>
</model>
</world>
</sdf>