-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathmodel.sdf
More file actions
49 lines (46 loc) · 1.18 KB
/
Copy pathmodel.sdf
File metadata and controls
49 lines (46 loc) · 1.18 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
<?xml version="1.0" ?>
<sdf version="1.4">
<model name="lunar">
<static>true</static>
<link name="link">
<collision name="collision">
<surface>
<friction>
<ode>
<mu>0.2</mu>
</ode>
</friction>
<contact>
<ode>
<soft_cfm>0.01</soft_cfm>
<kp>1000</kp>
<kd>1</kd>
<!-- <max_vel>0.000001</max_vel> -->
<min_depth>0.02</min_depth>
</ode>
</contact>
</surface>
<geometry>
<mesh>
<scale>1 1 1</scale>
<uri>model://lunar/meshes/lunar_surface.dae</uri>
</mesh>
</geometry>
</collision>
<visual name="visual">
<geometry>
<mesh>
<scale>1 1 1</scale>
<uri>model://lunar/meshes/lunar_surface.dae</uri>
</mesh>
</geometry>
<material>
<script>
<uri>file://model://lunar/materials/scripts/gazebo.material</uri>
<name>Gazebo/LunarSurface</name>
</script>
</material>
</visual>
</link>
</model>
</sdf>