Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions jetty_demo/models/gravel_platform/model.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<model>
<name>Gravel platform</name>
<version>1.0</version>
<sdf version='1.12'>model.sdf</sdf>

<author>
<name>Ian Chen</name>
<email>ichen@openrobotics.org</email>
</author>

<description>
A gravel platform
</description>
</model>
29 changes: 29 additions & 0 deletions jetty_demo/models/gravel_platform/model.sdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" ?>
<sdf version="1.12">
<model name="gravel_platform">
<link name="link">
<pose>0 0 0 0.0 0 0</pose>
<collision name="collision">
<geometry>
<box>
<size>10 10 8</size>
</box>
</geometry>
</collision>
<visual name="visual">
<geometry>
<box>
<size>10 10 8</size>
</box>
</geometry>
<material>
<diffuse>1 1 1</diffuse>
<pbr><metal>
<albedo_map>materials/textures/gravel_diffuse.png</albedo_map>
<normal_map>materials/textures/gravel_normal.png</normal_map>
</metal></pbr>
</material>
</visual>
</link>
</model>
</sdf>
Loading