Apartment building

This commit is contained in:
nkoenig 2017-10-12 16:39:54 -07:00
parent 37f2ca1d8f
commit 2af3a9e67c
6 changed files with 223 additions and 0 deletions

View File

@ -13,6 +13,7 @@ string (TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWER)
exec_program(date ARGS -u +%Y-%m-%-dT%H:%M:%S OUTPUT_VARIABLE CURRENT_DATE)
set (dirs
apartment
apollo15_landing_site_1000x1000
arm_part
arrow_red

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 KiB

184
apartment/meshes/apartment.dae Executable file

File diff suppressed because one or more lines are too long

16
apartment/model.config Normal file
View File

@ -0,0 +1,16 @@
<?xml version="1.0"?>
<model>
<name>Apartment</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name>Nate Koenig</name>
<email>nate@osrfoundation.org</email>
</author>
<description>
An apartment building.
</description>
</model>

22
apartment/model.sdf Normal file
View File

@ -0,0 +1,22 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="apartment">
<static>true</static>
<link name="link">
<collision name="collision">
<geometry>
<mesh>
<uri>model://apartment/meshes/apartment.dae</uri>
</mesh>
</geometry>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://apartment/meshes/apartment.dae</uri>
</mesh>
</geometry>
</visual>
</link>
</model>
</sdf>