forked from ctu-mrs/mrs_gazebo_common_resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.sdf
43 lines (43 loc) · 1.06 KB
/
model.sdf
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
<?xml version="1.0" ?>
<sdf version="1.5">
<model name="grass_plane">
<static>true</static>
<link name="link">
<pose>0 0 0 0 0 0</pose>
<collision name="collision">
<pose>0 0 0.15 0 0 0</pose>
<geometry>
<plane>
<normal>0 0 1</normal>
<size>250 250</size>
</plane>
</geometry>
<surface>
<friction>
<ode>
<mu>1</mu>
<mu2>1</mu2>
</ode>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<!-- <box> -->
<!-- <size>0.8 0.8 0.3</size> -->
<!-- </box> -->
<mesh>
<uri>file://grass_plane/meshes/grass_plane.dae</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<material>
<script>
<uri>file://media/materials/scripts/Gazebo.material</uri>
<name>Gazebo/Grass</name>
</script>
</material>
</visual>
</link>
</model>
</sdf>