-
Notifications
You must be signed in to change notification settings - Fork 0
/
course.world
66 lines (66 loc) · 1.62 KB
/
course.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
<?xml version="1.0"?>
<sdf version="1.4">
<world name="default">
<scene>
<ambient>0 0 0 1</ambient>
<shadows>0</shadows>
<grid>0</grid>
<background>0.7 0.7 0.7 1</background>
</scene>
<!--
<physics type="ode">
<gravity>0 0 -9.8</gravity>
<ode>
<solver>
<type>quick</type>
<iters>10</iters>
<sor>1.3</sor>
</solver>
<constraints>
<cfm>0</cfm>
<erp>0.1</erp>
<contact_max_correcting_vel>10</contact_max_correcting_vel>
<contact_surface_layer>0.001</contact_surface_layer>
</constraints>
</ode>
<real_time_update_rate>1000</real_time_update_rate>
<max_step_size>0.001</max_step_size>
<real_time_factor>1</real_time_factor>
</physics>
-->
<include>
<uri>model://sun</uri>
</include>
<model name="ground">
<pose>1 2.3 -.1 0 0 0</pose>
<static>1</static>
<link name="ground">
<collision name="ground_coll">
<geometry>
<box>
<size>10 10 .1</size>
</box>
</geometry>
<surface>
<contact>
<ode/>
</contact>
</surface>
</collision>
<visual name="ground_vis">
<geometry>
<box>
<size>10 10 .1</size>
</box>
</geometry>
<material>
<script>
<uri>file://course.material</uri>
<name>course</name>
</script>
</material>
</visual>
</link>
</model>
</world>
</sdf>