Skip to content

Commit 764eb13

Browse files
authored
Merge branch 'master' into PID_tuning
2 parents 8031cf0 + 1c22ec4 commit 764eb13

File tree

7 files changed

+4680
-0
lines changed

7 files changed

+4680
-0
lines changed

misc/logs/empty.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
material box/Diffuse
2+
{
3+
technique
4+
{
5+
pass
6+
{
7+
transparent_sorting on
8+
9+
texture_unit
10+
{
11+
texture boxTexture.jpg
12+
}
13+
}
14+
}
15+
}
1.98 MB
Loading

simulation/models/box/model.config

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0"?>
2+
<model>
3+
<name>box</name>
4+
<version>1.0</version>
5+
<sdf version="1.4">model.sdf</sdf>
6+
7+
<author>
8+
<name>Antonio Griego</name>
9+
</author>
10+
11+
<description>
12+
a simple box obstacle
13+
</description>
14+
</model>

simulation/models/box/model.sdf

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?xml version='1.0'?>
2+
<sdf version='1.4'>
3+
<model name="box">
4+
<pose>0.0 0.0 0.25 0.0 0.0 0.0</pose>
5+
<static>true</static>
6+
<link name='link'>
7+
<inertial>
8+
<mass>0.01</mass>
9+
<inertia>
10+
<ixx>0.00004</ixx>
11+
<ixy>0.0</ixy>
12+
<ixz>0.0</ixz>
13+
<iyy>0.00004</iyy>
14+
<iyz>0.0</iyz>
15+
<izz>0.00004</izz>
16+
</inertia>
17+
</inertial>
18+
<visual name='visual'>
19+
<geometry>
20+
<box>
21+
<size>0.5 0.5 0.5</size>
22+
</box>
23+
</geometry>
24+
<material>
25+
<script>
26+
<uri>model://box/materials/scripts</uri>
27+
<uri>model://box/materials/textures</uri>
28+
<name>box/Diffuse</name>
29+
</script>
30+
</material>
31+
</visual>
32+
<collision name ='collision'>
33+
<geometry>
34+
<box>
35+
<size>0.5 0.5 0.5</size>
36+
</box>
37+
</geometry>
38+
<surface>
39+
<friction>
40+
<ode>
41+
<mu>0.8</mu>
42+
<mu2>0.7</mu2>
43+
</ode>
44+
</friction>
45+
</surface>
46+
</collision>
47+
</link>
48+
</model>
49+
</sdf>

0 commit comments

Comments
 (0)