Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Humanoid Path Planner
hpp-practicals
Commits
f86eef3d
Commit
f86eef3d
authored
Oct 29, 2018
by
Florent Lamiraux
Committed by
Florent Lamiraux florent@laas.fr
Nov 09, 2018
Browse files
[urdf] Add an environment with small obstacles.
parent
b53d2618
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
f86eef3d
...
...
@@ -32,6 +32,7 @@ SET(URDF_UR_BENCHMARK_FILES
urdf/ur_benchmark/wall.urdf
urdf/ur_benchmark/box.urdf
urdf/ur_benchmark/ground.urdf
urdf/ur_benchmark/ground_with_obstacles.urdf
urdf/ur_benchmark/pokeball.urdf
)
...
...
urdf/ur_benchmark/ground_with_obstacles.urdf
0 → 100644
View file @
f86eef3d
<?xml version="1.0"?>
<robot
name=
"ground"
>
<link
name=
"ground_base"
>
<!--
VISUAL
-->
<visual>
<!-- Ground -->
<geometry>
<box
size=
"1 1 0.02"
/>
</geometry>
<origin
xyz=
"0 0 -0.01"
/>
<material
name=
"Orange"
>
<color
rgba=
"1 0.4 0.3 0.6"
/>
</material>
</visual>
<visual>
<!-- Obstacle in front -->
<geometry>
<box
size=
"0.2 0.02 0.3"
/>
</geometry>
<origin
xyz=
"0.4 0 0.15"
/>
<material
name=
"Orange"
>
<color
rgba=
"1 0.4 0.3 0.6"
/>
</material>
</visual>
<visual>
<!-- Obstacle in rear -->
<geometry>
<box
size=
"0.2 0.02 0.3"
/>
</geometry>
<origin
xyz=
"-0.4 0 0.15"
/>
<material
name=
"Orange"
>
<color
rgba=
"1 0.4 0.3 0.6"
/>
</material>
</visual>
<!--
COLLISION
-->
<collision>
<!-- Ground -->
<geometry>
<box
size=
"1 1 0.02"
/>
</geometry>
<origin
xyz=
"0 0 -0.01"
/>
<material
name=
"Orange"
>
<color
rgba=
"1 0.4 0.3 0.6"
/>
</material>
</collision>
<collision>
<!-- Obstacle in front -->
<geometry>
<box
size=
"0.2 0.02 0.3"
/>
</geometry>
<origin
xyz=
"0.4 0 0.15"
/>
<material
name=
"Orange"
>
<color
rgba=
"1 0.4 0.3 0.6"
/>
</material>
</collision>
<collision>
<!-- Obstacle in rear -->
<geometry>
<box
size=
"0.2 0.02 0.3"
/>
</geometry>
<origin
xyz=
"-0.4 0 0.15"
/>
<material
name=
"Orange"
>
<color
rgba=
"1 0.4 0.3 0.6"
/>
</material>
</collision>
</link>
</robot>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment