git commit -m "first commit"

This commit is contained in:
2026-05-28 10:29:58 +07:00
commit 167c52aeb6
2048 changed files with 740251 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 2.8.3)
project(aws_robomaker_small_warehouse_world)
find_package(catkin REQUIRED COMPONENTS
gazebo_ros
)
catkin_package()
install(DIRECTORY launch models worlds maps rviz
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

View File

@@ -0,0 +1,4 @@
## Code of Conduct
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
opensource-codeofconduct@amazon.com with any additional questions or comments.

View File

@@ -0,0 +1,61 @@
# Contributing Guidelines
Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
documentation, we greatly value feedback and contributions from our community.
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
information to effectively respond to your bug report or contribution.
## Reporting Bugs/Feature Requests
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
* A reproducible test case or series of steps
* The version of our code being used
* Any modifications you've made relevant to the bug
* Anything unusual about your environment or deployment
## Contributing via Pull Requests
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
1. You are working against the latest source on the *master* branch.
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
To send us a pull request, please:
1. Fork the repository.
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
3. Ensure local tests pass.
4. Commit to your fork using clear commit messages.
5. Send us a pull request, answering any default questions in the pull request interface.
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
## Finding contributions to work on
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
## Code of Conduct
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
opensource-codeofconduct@amazon.com with any additional questions or comments.
## Security issue notifications
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
## Licensing
See the [LICENSE](LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

View File

@@ -0,0 +1,15 @@
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,118 @@
# AWS RoboMaker Small Warehouse World
![Gazebo01](docs/images/small_warehouse_gazebo.png)
## AWS Robomaker Small Warehouse World on Gzweb
![Gzweb01](docs/images/gzweb_aws_warehouse.png)
This Gazebo world is well suited for organizations who are building and testing robot applications for warehouse and logistics use cases.
## 3D Models included in this Gazebo World
| Model (/models) | Picture |
| :------------- |:-------------:|
| **aws_robomaker_warehouse_Bucket_01** | ![Model: Buckets](docs/images/models_buckets.png)
| **aws_robomaker_warehouse_ClutteringA_01, aws_robomaker_warehouse_ClutteringC_01, aws_robomaker_warehouse_ClutteringD_01** | ![Model: Box Clusters](docs/images/models_boxes.png) |
| **aws_robomaker_warehouse_DeskC_01** | ![Model: Desk](docs/images/models_desk.png)
| **aws_robomaker_warehouse_GroundB_01** | ![Model: Ground Paint](docs/images/models_warehouse_ground_paint.png)
| **aws_robomaker_warehouse_TrashCanC_01** | ![Model: Humans](docs/images/models_trashcan.png)
| **aws_robomaker_warehouse_Lamp_01** | ![Model: Ceiling Lamp](docs/images/models_ceiling_lamp.png)
| **aws_robomaker_warehouse_PalletJackB_01** | ![Model: Pallet Jack](docs/images/models_lift.png)
| **aws_robomaker_warehouse_ShelfD_01, aws_robomaker_warehouse_ShelfE_01, aws_robomaker_warehouse_ShelfF_01** | ![Model: Pallet Jack](docs/images/models_shelves.png)
## Building and Launching the Gazebo World with your ROS Applications
* Create or update a **.rosinstall** file in the root directory of your ROS workspace. Add the following line to **.rosintall**:
```
- git: {local-name: src/aws-robomaker-small-warehouse-world, uri: 'https://github.com/aws-robotics/aws-robomaker-small-warehouse-world.git', version: master}
```
* Change the directory to your ROS workspace and run `rosws update`
* Add the following include to the ROS launch file you are using:
```xml
<launch>
<!-- Launch World -->
<include file="$(find aws_robomaker_small_warehouse_world)/launch/small_warehouse.launch"/>
...
</launch>
```
* Build your application using `colcon`
```bash
rosws update
rosdep install --from-paths . --ignore-src -r -y
colcon build
```
## Example: Running this world directly in Gazebo without a ROS application
To open this world in Gazebo, change the directory to your ROS workspace root folder and run:
```bash
cd aws-robomaker-small-warehouse-world
export GAZEBO_MODEL_PATH=`pwd`/models
gazebo worlds/small_warehouse.world
```
## Example: Running this world on Gazebo headless and running the UI on Gzweb
*Tested in ROS Kinetic/Melodic, Gazebo 7/9 with node version 8.11.3/10.22.1*
To open this world in Gzweb, There are two steps,
1) In a terminal, change to your ROS workspace root folder and run gzserver with the small warehouse world:
```bash
cd aws-robomaker-small-warehouse-world
export GAZEBO_MODEL_PATH=`pwd`/models
gzserver worlds/small_warehouse.world
```
2) In another terminal, setup and run GzWeb
- Install GzWeb by following the [official documentation](http://gazebosim.org/gzweb#install-collapse-1):
**Important**:
* The recommended NodeJS versions are 4 up to version 8.
* Watch out for [conflicting installations of Node/NodeJS](https://askubuntu.com/questions/695155/node-nodejs-have-different-version)
* See [Troubleshooting section](http://gazebosim.org/gzweb#install-collapse-3) for other issues
- Deploy GzWeb
- Approach 1: Copy all the Gazebo models from small-warehouse world to gzweb/http/client/assets/, and run the deploy script
```bash
cp -r ~/aws-robomaker-small-warehouse-world/models/. ~/gzweb/http/client/assets
cd ~/gzweb
export GAZEBO_MASTER_URI="http://localhost:11345" # change localhost to IP address of the gzserver machine
npm run deploy
npm start
```
- Approach 2: without copying the Gazebo models, export Gazebo model path and run the deploy script with `-m local`
```bash
cd aws-robomaker-small-warehouse-world
export GAZEBO_MODEL_PATH=`pwd`/models
cd ~/gzweb
export GAZEBO_MASTER_URI="http://localhost:11345" # change localhost to IP address of the gzserver machine
npm run deploy --- -m local
npm start
```
## Example: Running this world directly using ROS without a simulated robot
To launch this base Gazebo world without a robot, clone this repository and run the following commands. **Note: ROS and gazebo must already be installed on the host.**
```bash
# build for ROS
rosdep install --from-paths . --ignore-src -r -y
colcon build
# run in ROS
source install/setup.sh
roslaunch aws_robomaker_small_warehouse_world view_small_warehouse.launch
```
**Visit the [AWS RoboMaker website](https://aws.amazon.com/robomaker/) to learn more about building intelligent robotic applications with Amazon Web Services.**
## Notes
- Lighting might vary on different system(s) (e.g brighter on system without CPU and darker on system with GPU)
- Adjust lighting parameters in .world file as you need

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -0,0 +1,16 @@
<launch>
<!-- Always set GUI to false for AWS RoboMaker Simulation
Use gui:=true on roslaunch command-line to run with a gui.
-->
<arg name="gui" default="false"/>
<include file="$(find gazebo_ros)/launch/empty_world.launch">
<arg name="world_name" value="$(find aws_robomaker_small_warehouse_world)/worlds/no_roof_small_warehouse.world"/>
<arg name="paused" default="false"/>
<arg name="use_sim_time" default="true"/>
<arg name="gui" default="$(arg gui)"/>
<arg name="headless" default="false"/>
<arg name="debug" default="false"/>
<arg name="verbose" default="true"/>
</include>
</launch>

View File

@@ -0,0 +1,16 @@
<launch>
<!-- Always set GUI to false for AWS RoboMaker Simulation
Use gui:=true on roslaunch command-line to run with a gui.
-->
<arg name="gui" default="false"/>
<include file="$(find gazebo_ros)/launch/empty_world.launch">
<arg name="world_name" value="$(find aws_robomaker_small_warehouse_world)/worlds/small_warehouse.world"/>
<arg name="paused" default="false"/>
<arg name="use_sim_time" default="true"/>
<arg name="gui" default="$(arg gui)"/>
<arg name="headless" default="false"/>
<arg name="debug" default="false"/>
<arg name="verbose" default="true"/>
</include>
</launch>

View File

@@ -0,0 +1,7 @@
<launch>
<!-- Show Gazebo GUI on launch -->
<include file="$(find aws_robomaker_small_warehouse_world)/launch/small_warehouse.launch">
<arg name="gui" value="true"/>
</include>
</launch>

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,7 @@
image: map.pgm
resolution: 0.020000
origin: [-10.000000, -20.240000, 0.000000]
negate: 0
occupied_thresh: 0.65
free_thresh: 0.196

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
image: map_rotated.png
resolution: 0.050000
origin: [-7.000, -10.500000, 0.000000]
negate: 0
occupied_thresh: 0.65
free_thresh: 0.196
# -3.071 3.583

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

View File

@@ -0,0 +1,201 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-03-21T07:58:19Z</created><keywords></keywords><modified>2019-03-21T07:58:19Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_materials>
<material id="Material #946391" name="Material #946391">
<instance_effect url="#Material #946391-fx"/>
</material>
</library_materials>
<library_effects>
<effect id="Material #946391-fx" name="Material #946391">
<profile_COMMON>
<technique sid="standard">
<phong>
<emission>
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
</emission>
<ambient>
<color sid="ambient">0.588000 0.588000 0.588000 1.000000</color>
</ambient>
<diffuse>
<color sid="diffuse">0.588000 0.588000 0.588000 1.000000</color>
</diffuse>
<specular>
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
</specular>
<shininess>
<float sid="shininess">2.000000</float>
</shininess>
<reflective>
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
</reflective>
<reflectivity>
<float sid="reflectivity">1.000000</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
</transparent>
<transparency>
<float sid="transparency">0.000000</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
</effect>
</library_effects>
<library_geometries>
<geometry id="aws_robomaker_warehouse_Bucket_01_collision-lib" name="aws_robomaker_warehouse_Bucket_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_Bucket_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_Bucket_01_collision-POSITION-array" count="36">
-45.501598 -57.976257 0.490845
44.339504 -57.976257 0.490845
-45.501598 58.313538 0.490845
44.339504 58.313538 0.490845
-47.634106 -61.119202 140.905685
46.472012 -61.119202 140.905685
-47.634106 61.119202 140.905685
46.472012 61.119202 140.905685
46.472012 -61.119198 24.969147
-47.634109 -61.119202 24.969151
-47.634106 61.119198 24.969147
46.472012 61.119198 24.969147
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Bucket_01_collision-POSITION-array" count="12" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_Bucket_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_Bucket_01_collision-Normal0-array" count="180">
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.998076 -0.062006
0.000000 -0.991858 -0.127352
0.000000 -0.991858 -0.127352
0.000000 -0.991858 -0.127352
0.000000 -0.998076 -0.062006
0.000000 -0.998076 -0.062006
0.999126 0.000000 -0.041805
0.996227 0.000000 -0.086790
0.996227 0.000000 -0.086790
0.996227 0.000000 -0.086790
0.999126 0.000000 -0.041805
0.999134 0.000000 -0.041602
0.000000 0.998463 -0.055418
0.000000 0.993495 -0.113873
0.000000 0.998463 -0.055418
0.000000 0.993495 -0.113873
0.000000 0.998463 -0.055418
0.000000 0.993495 -0.113873
-0.999126 0.000000 -0.041805
-0.996227 0.000000 -0.086790
-0.999134 0.000000 -0.041602
-0.996227 0.000000 -0.086790
-0.999126 0.000000 -0.041805
-0.996227 0.000000 -0.086790
0.000000 -0.998076 -0.062006
0.000000 -1.000000 -0.000000
0.000000 -1.000000 -0.000000
0.000000 -1.000000 -0.000000
0.000000 -0.998076 -0.062006
0.000000 -0.998076 -0.062006
0.999134 0.000000 -0.041602
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.999134 0.000000 -0.041602
0.999126 0.000000 -0.041805
0.000000 1.000000 -0.000000
0.000000 0.998463 -0.055418
0.000000 1.000000 -0.000000
0.000000 1.000000 -0.000000
0.000000 0.998463 -0.055418
0.000000 0.998463 -0.055418
-0.999126 0.000000 -0.041805
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-0.999126 0.000000 -0.041805
-0.999134 0.000000 -0.041602
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Bucket_01_collision-Normal0-array" count="60" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_Bucket_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_Bucket_01_collision-UV0-array" count="64">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.174235
0.000000 0.174235
0.000000 0.174235
1.000000 0.174235
1.000000 0.174235
0.000000 0.174235
1.000000 0.174235
0.000000 0.174235
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Bucket_01_collision-UV0-array" count="32" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_Bucket_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_Bucket_01_collision-POSITION"/>
</vertices>
<triangles count="20" material="Material #946391"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_Bucket_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_Bucket_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_Bucket_01_collision-UV0"/><p> 1 0 1 0 1 0 3 2 3 0 3 0 2 4 2 3 5 3 7 6 7 6 7 6 4 8 4 7 9 7 4 10 4 5 11 5 8 12 24 0 13 8 1 14 9 0 15 8 8 16 24 9 17 26 11 18 30 1 19 12 3 20 13 1 21 12 11 22 30 8 23 25 11 24 31 2 25 17 10 26 28 2 27 17 11 28 31 3 29 16 10 30 29 0 31 21 9 32 27 0 33 21 10 34 29 2 35 20 9 36 26 5 37 11 4 38 10 5 39 11 9 40 26 8 41 24 8 42 25 7 43 15 5 44 14 7 45 15 8 46 25 11 47 30 7 48 18 11 49 31 6 50 19 6 51 19 11 52 31 10 53 28 10 54 29 4 55 23 6 56 22 4 57 23 10 58 29 9 59 27</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_Bucket_01_collision" name="aws_robomaker_warehouse_Bucket_01_collision">
<node name="aws_robomaker_warehouse_Bucket_01_collision" id="aws_robomaker_warehouse_Bucket_01_collision" layer="aws_robomaker_warehouse_Bucket_01" sid="aws_robomaker_warehouse_Bucket_01_collision"><matrix sid="matrix">1.000000 0.000000 0.000000 0.581024 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_Bucket_01_collision-lib"><bind_material><technique_common><instance_material symbol="Material #946391" target="#Material #946391"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_Bucket_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,786 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-03-21T07:57:48Z</created><keywords></keywords><modified>2019-03-21T07:57:48Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_images>
<image id="Map #1123124511-image" name="Map #1123124511">
<init_from>../materials/textures/aws_robomaker_warehouse_Bucket_01.png</init_from>
</image>
</library_images>
<library_materials>
<material id="Material #946392" name="Material #946392">
<instance_effect url="#Material #946392-fx"/>
</material>
</library_materials>
<library_effects>
<effect id="Material #946392-fx" name="Material #946392">
<profile_COMMON>
<technique sid="standard">
<phong>
<emission>
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
</emission>
<ambient>
<color sid="ambient">0.588000 0.588000 0.588000 1.000000</color>
</ambient>
<diffuse>
<texture texture="Map #1123124511-image" texcoord="CHANNEL0">
<extra>
<technique profile="MAYA">
<wrapU sid="wrapU0">TRUE</wrapU>
<wrapV sid="wrapV0">TRUE</wrapV>
<blend_mode>ADD</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
</specular>
<shininess>
<float sid="shininess">2.000000</float>
</shininess>
<reflective>
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
</reflective>
<reflectivity>
<float sid="reflectivity">1.000000</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
</transparent>
<transparency>
<float sid="transparency">0.000000</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
</effect>
</library_effects>
<library_geometries>
<geometry id="aws_robomaker_warehouse_Bucket_01_visual-lib" name="aws_robomaker_warehouse_Bucket_01_visualMesh">
<mesh>
<source id="aws_robomaker_warehouse_Bucket_01_visual-POSITION">
<float_array id="aws_robomaker_warehouse_Bucket_01_visual-POSITION-array" count="240">
-47.053059 -59.404663 140.414841
-3.469593 -59.404663 140.414841
-47.053059 0.261108 140.414841
-3.469593 0.261108 140.414841
-47.053059 -59.404663 24.478302
-3.469593 -59.404663 24.478302
-47.053059 0.261108 24.478302
-3.469593 0.261108 24.478302
-44.920551 -56.664063 0.044712
-5.602100 -56.664063 0.044712
-44.920551 -2.479492 0.044712
-5.602100 -2.479492 0.044712
-45.551821 -1.313351 140.414841
-45.551821 -57.830206 140.414841
-4.970831 -57.830206 140.414841
-4.970831 -1.313351 140.414841
-43.497578 -4.180773 107.089249
-43.497578 -55.149446 107.089249
-7.025072 -55.149446 107.089249
-7.025072 -4.180773 107.089249
-43.109898 1.219604 119.170395
0.473568 1.219604 119.170395
-43.109898 60.885376 119.170395
0.473568 60.885376 119.170395
-43.109898 1.219604 24.433590
0.473568 1.219604 24.433590
-43.109898 60.885376 24.433590
0.473568 60.885376 24.433590
-40.977390 3.960205 0.000000
-1.658939 3.960205 0.000000
-40.977390 58.144775 0.000000
-1.658939 58.144775 0.000000
-41.608660 59.310913 119.170395
-41.608660 2.794060 119.170395
-1.027670 2.794060 119.170395
-1.027670 59.310913 119.170395
-39.554417 56.443497 85.865417
-39.554417 5.474823 85.865417
-3.081911 5.474823 85.865417
-3.081911 56.443497 85.865417
3.469601 1.219604 87.304581
47.053070 1.219604 87.304581
3.469601 60.885376 87.304581
47.053070 60.885376 87.304581
3.469601 1.219604 24.433590
47.053070 1.219604 24.433590
3.469601 60.885376 24.433590
47.053070 60.885376 24.433590
5.602108 3.960205 0.000000
44.920563 3.960205 0.000000
5.602108 58.144775 0.000000
44.920563 58.144775 0.000000
4.970839 59.310913 87.304581
4.970839 2.794060 87.304581
45.551826 2.794060 87.304581
45.551826 59.310913 87.304581
7.025082 56.443497 54.033794
7.025082 5.474823 54.033794
43.497589 5.474823 54.033794
43.497589 56.443497 54.033794
1.545681 -60.885498 129.792053
45.129150 -60.885498 129.792053
1.545681 -1.219727 129.792053
45.129150 -1.219727 129.792053
1.545681 -60.885498 24.478302
45.129150 -60.885498 24.478302
1.545681 -1.219727 24.478302
45.129150 -1.219727 24.478302
3.678188 -58.144897 0.044712
42.996643 -58.144897 0.044712
3.678188 -3.960327 0.044712
42.996643 -3.960327 0.044712
3.046919 -2.794186 129.792053
3.046919 -59.311041 129.792053
43.627907 -59.311041 129.792053
43.627907 -2.794186 129.792053
5.101162 -5.661608 96.496231
5.101162 -56.630281 96.496231
41.573669 -56.630281 96.496231
41.573669 -5.661608 96.496231
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Bucket_01_visual-POSITION-array" count="80" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_Bucket_01_visual-Normal0">
<float_array id="aws_robomaker_warehouse_Bucket_01_visual-Normal0-array" count="1296">
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.998106 0.000000 0.061525
0.998106 0.000000 0.061525
0.998106 0.000000 0.061525
0.998106 0.000000 0.061525
0.998106 0.000000 0.061525
0.998106 0.000000 0.061525
0.000000 0.996780 0.080182
0.000000 0.996780 0.080182
0.000000 0.996780 0.080182
0.000000 0.996780 0.080182
0.000000 0.996780 0.080182
0.000000 0.996780 0.080182
-0.998106 0.000000 0.061525
-0.998106 0.000000 0.061525
-0.998106 0.000000 0.061525
-0.998106 0.000000 0.061525
-0.998106 0.000000 0.061525
-0.998106 0.000000 0.061525
0.000000 -0.996319 0.085726
0.000000 -0.996319 0.085726
0.000000 -0.996319 0.085726
0.000000 -0.996319 0.085726
0.000000 -0.996319 0.085726
0.000000 -0.996319 0.085726
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.998103 0.000000 0.061563
0.998103 0.000000 0.061563
0.998103 0.000000 0.061563
0.998103 0.000000 0.061563
0.998103 0.000000 0.061563
0.998103 0.000000 0.061563
0.000000 0.996776 0.080232
0.000000 0.996776 0.080232
0.000000 0.996776 0.080232
0.000000 0.996776 0.080232
0.000000 0.996776 0.080232
0.000000 0.996776 0.080232
-0.998103 0.000000 0.061563
-0.998103 0.000000 0.061563
-0.998103 0.000000 0.061563
-0.998103 0.000000 0.061563
-0.998103 0.000000 0.061563
-0.998103 0.000000 0.061563
0.000000 -0.996314 0.085778
0.000000 -0.996314 0.085778
0.000000 -0.996314 0.085778
0.000000 -0.996314 0.085778
0.000000 -0.996314 0.085778
0.000000 -0.996314 0.085778
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.998099 0.000000 0.061626
0.998099 0.000000 0.061626
0.998099 0.000000 0.061626
0.998099 0.000000 0.061626
0.998099 0.000000 0.061626
0.998099 0.000000 0.061626
0.000000 0.996770 0.080314
0.000000 0.996770 0.080314
0.000000 0.996770 0.080314
0.000000 0.996770 0.080314
0.000000 0.996770 0.080314
0.000000 0.996770 0.080314
-0.998099 0.000000 0.061626
-0.998099 0.000000 0.061626
-0.998099 0.000000 0.061626
-0.998099 0.000000 0.061626
-0.998099 0.000000 0.061626
-0.998099 0.000000 0.061626
0.000000 -0.996307 0.085866
0.000000 -0.996307 0.085866
0.000000 -0.996307 0.085866
0.000000 -0.996307 0.085866
0.000000 -0.996307 0.085866
0.000000 -0.996307 0.085866
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
-0.996213 0.000000 -0.086947
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.000000 0.993768 -0.111466
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.996213 0.000000 -0.086947
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 -0.993768 -0.111466
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.998102 0.000000 0.061580
0.998102 0.000000 0.061580
0.998102 0.000000 0.061580
0.998102 0.000000 0.061580
0.998102 0.000000 0.061580
0.998102 0.000000 0.061580
0.000000 0.996774 0.080254
0.000000 0.996774 0.080254
0.000000 0.996774 0.080254
0.000000 0.996774 0.080254
0.000000 0.996774 0.080254
0.000000 0.996774 0.080254
-0.998102 0.000000 0.061579
-0.998102 0.000000 0.061579
-0.998102 0.000000 0.061579
-0.998102 0.000000 0.061579
-0.998102 0.000000 0.061579
-0.998102 0.000000 0.061579
0.000000 -0.996312 0.085802
0.000000 -0.996312 0.085802
0.000000 -0.996312 0.085802
0.000000 -0.996312 0.085802
0.000000 -0.996312 0.085802
0.000000 -0.996312 0.085802
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Bucket_01_visual-Normal0-array" count="432" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_Bucket_01_visual-UV0">
<float_array id="aws_robomaker_warehouse_Bucket_01_visual-UV0-array" count="328">
0.503250 0.182172
0.260475 0.182172
0.266882 0.176062
0.496844 0.176062
0.202726 0.996046
0.670755 0.996046
0.004123 0.996046
0.472024 0.996046
0.003904 0.183168
0.003904 0.004111
0.250662 0.004111
0.250662 0.183168
0.677249 0.192456
0.251604 0.192456
0.429384 0.192456
0.854111 0.192456
0.765823 0.004091
0.765823 0.182429
0.516603 0.182429
0.516603 0.004091
0.670755 0.468044
0.004123 0.468044
0.670755 0.356586
0.004123 0.356586
0.202726 0.468044
0.472024 0.468044
0.202726 0.356586
0.472024 0.356586
0.260475 0.004834
0.266882 0.010943
0.503250 0.004834
0.496844 0.010943
0.004105 0.192456
0.251604 0.345840
0.004105 0.345840
0.677249 0.345840
0.429384 0.345840
0.854111 0.345840
0.941696 0.996046
0.941696 0.468044
0.941696 0.356586
0.503250 0.182172
0.260475 0.182172
0.266882 0.176063
0.496844 0.176063
0.202726 0.899077
0.670755 0.899077
0.004123 0.899077
0.472024 0.899077
0.003904 0.183168
0.003904 0.004111
0.250662 0.004111
0.250662 0.183168
0.251893 0.192456
0.677115 0.192456
0.854111 0.192456
0.429617 0.192456
0.765823 0.004091
0.765823 0.182429
0.516603 0.182429
0.516603 0.004091
0.670755 0.468044
0.004123 0.468044
0.670755 0.356586
0.004123 0.356586
0.202726 0.468044
0.472024 0.468044
0.202726 0.356586
0.472024 0.356586
0.004105 0.192456
0.004105 0.345840
0.677115 0.345840
0.260475 0.004834
0.266882 0.010943
0.503250 0.004834
0.496844 0.010943
0.429617 0.345840
0.251893 0.345840
0.854111 0.345840
0.941696 0.899077
0.941696 0.468044
0.941696 0.356586
0.503250 0.182172
0.260475 0.182172
0.266878 0.176066
0.496844 0.176066
0.670755 0.754753
0.202726 0.754753
0.472024 0.754753
0.941696 0.754753
0.003904 0.183168
0.003904 0.004111
0.250662 0.004111
0.250662 0.183168
0.251803 0.192456
0.676793 0.192456
0.854111 0.192456
0.429464 0.192456
0.765823 0.004091
0.765823 0.182429
0.516603 0.182429
0.516603 0.004091
0.202726 0.468044
0.472024 0.468044
0.202726 0.356586
0.472024 0.356586
0.670755 0.468044
0.941696 0.468044
0.670755 0.356586
0.941696 0.356586
0.004123 0.754753
0.004123 0.468044
0.004123 0.356586
0.260475 0.004834
0.266878 0.010943
0.503250 0.004834
0.496844 0.010943
0.676793 0.345840
0.429464 0.345840
0.251803 0.345840
0.854111 0.345840
0.004105 0.192456
0.004105 0.345840
0.503250 0.182172
0.260475 0.182172
0.266884 0.176061
0.496844 0.176061
0.670755 0.949681
0.202726 0.949681
0.472024 0.949681
0.941696 0.949681
0.003904 0.183168
0.003904 0.004111
0.250662 0.004111
0.250662 0.183168
0.251692 0.192456
0.677407 0.192456
0.854111 0.192456
0.429511 0.192456
0.765823 0.004091
0.765823 0.182429
0.516603 0.182429
0.516603 0.004091
0.202726 0.468044
0.472024 0.468044
0.202726 0.356586
0.472024 0.356586
0.670755 0.468044
0.941696 0.468044
0.670755 0.356586
0.941696 0.356586
0.260475 0.004834
0.266884 0.010943
0.503250 0.004834
0.496844 0.010943
0.677407 0.345840
0.429511 0.345840
0.004105 0.192456
0.251692 0.345840
0.004105 0.345840
0.854111 0.345840
0.004123 0.949681
0.004123 0.468044
0.004123 0.356586
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Bucket_01_visual-UV0-array" count="164" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_Bucket_01_visual-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_Bucket_01_visual-POSITION"/>
</vertices>
<triangles count="144" material="Material #946392"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_Bucket_01_visual-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_Bucket_01_visual-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_Bucket_01_visual-UV0"/><p> 2 0 4 6 1 24 0 2 7 0 3 7 6 4 24 4 5 25 3 6 6 7 7 21 2 8 4 2 9 4 7 10 21 6 11 24 1 12 5 5 13 20 3 14 38 3 15 38 5 16 20 7 17 39 0 18 7 4 19 25 1 20 5 1 21 5 4 22 25 5 23 20 10 24 26 4 25 25 6 26 24 4 27 25 10 28 26 8 29 27 7 30 21 11 31 23 6 32 24 6 33 24 11 34 23 10 35 26 7 36 39 5 37 20 9 38 22 7 39 39 9 40 22 11 41 40 4 42 25 8 43 27 5 44 20 5 45 20 8 46 27 9 47 22 8 48 11 11 49 9 9 50 10 11 51 9 8 52 11 10 53 8 0 54 1 12 55 3 2 56 0 12 57 3 0 58 1 13 59 2 0 60 1 1 61 28 14 62 29 0 63 1 14 64 29 13 65 2 1 66 28 3 67 30 15 68 31 1 69 28 15 70 31 14 71 29 12 72 3 3 73 30 2 74 0 3 75 30 12 76 3 15 77 31 13 78 13 16 79 34 12 80 32 16 81 34 13 82 13 17 83 33 14 84 14 17 85 33 13 86 13 17 87 33 14 88 14 18 89 36 15 90 12 19 91 35 14 92 14 14 93 14 19 94 35 18 95 36 12 96 15 16 97 37 15 98 12 15 99 12 16 100 37 19 101 35 16 102 19 18 103 17 19 104 18 18 105 17 16 106 19 17 107 16 22 108 45 26 109 65 20 110 48 20 111 48 26 112 65 24 113 66 23 114 47 27 115 62 22 116 45 22 117 45 27 118 62 26 119 65 21 120 46 25 121 61 23 122 79 23 123 79 25 124 61 27 125 80 20 126 48 24 127 66 21 128 46 21 129 46 24 130 66 25 131 61 24 132 66 26 133 65 30 134 67 24 135 66 30 136 67 28 137 68 27 138 62 31 139 64 26 140 65 26 141 65 31 142 64 30 143 67 29 144 63 27 145 80 25 146 61 27 147 80 29 148 63 31 149 81 24 150 66 28 151 68 25 152 61 25 153 61 28 154 68 29 155 63 28 156 52 31 157 50 29 158 51 31 159 50 28 160 52 30 161 49 20 162 42 32 163 44 22 164 41 32 165 44 20 166 42 33 167 43 20 168 42 21 169 72 34 170 73 20 171 42 34 172 73 33 173 43 21 174 72 23 175 74 35 176 75 21 177 72 35 178 75 34 179 73 23 180 74 22 181 41 32 182 44 23 183 74 32 184 44 35 185 75 33 186 54 36 187 76 32 188 56 36 189 76 33 190 54 37 191 71 34 192 55 37 193 71 33 194 54 37 195 71 34 196 55 38 197 78 35 198 53 39 199 77 34 200 69 34 201 69 39 202 77 38 203 70 32 204 56 36 205 76 35 206 53 35 207 53 36 208 76 39 209 77 36 210 60 38 211 58 39 212 59 38 213 58 36 214 60 37 215 57 46 216 106 40 217 89 42 218 86 40 219 89 46 220 106 44 221 107 43 222 88 47 223 103 42 224 86 42 225 86 47 226 103 46 227 106 45 228 102 43 229 88 41 230 87 43 231 88 45 232 102 47 233 103 40 234 110 44 235 111 41 236 87 41 237 87 44 238 111 45 239 102 44 240 107 46 241 106 50 242 108 44 243 107 50 244 108 48 245 109 47 246 103 51 247 105 46 248 106 46 249 106 51 250 105 50 251 108 49 252 104 47 253 103 45 254 102 47 255 103 49 256 104 51 257 105 44 258 111 48 259 112 45 260 102 45 261 102 48 262 112 49 263 104 48 264 93 51 265 91 49 266 92 51 267 91 48 268 93 50 269 90 40 270 83 52 271 85 42 272 82 52 273 85 40 274 83 53 275 84 40 276 83 41 277 113 54 278 114 40 279 83 54 280 114 53 281 84 41 282 113 43 283 115 55 284 116 41 285 113 55 286 116 54 287 114 42 288 82 55 289 116 43 290 115 55 291 116 42 292 82 52 293 85 53 294 95 56 295 118 52 296 97 56 297 118 53 298 95 57 299 117 54 300 96 57 301 117 53 302 95 57 303 117 54 304 96 58 305 120 55 306 94 59 307 119 54 308 121 54 309 121 59 310 119 58 311 122 52 312 97 56 313 118 55 314 94 55 315 94 56 316 118 59 317 119 56 318 101 58 319 99 59 320 100 58 321 99 56 322 101 57 323 98 62 324 127 66 325 147 60 326 130 60 327 130 66 328 147 64 329 148 63 330 129 67 331 144 62 332 127 62 333 127 67 334 144 66 335 147 61 336 128 65 337 143 63 338 129 63 339 129 65 340 143 67 341 144 60 342 161 64 343 162 61 344 128 61 345 128 64 346 162 65 347 143 70 348 149 64 349 148 66 350 147 64 351 148 70 352 149 68 353 150 67 354 144 71 355 146 66 356 147 66 357 147 71 358 146 70 359 149 67 360 144 65 361 143 69 362 145 67 363 144 69 364 145 71 365 146 64 366 162 68 367 163 65 368 143 65 369 143 68 370 163 69 371 145 68 372 134 71 373 132 69 374 133 71 375 132 68 376 134 70 377 131 60 378 124 72 379 126 62 380 123 72 381 126 60 382 124 73 383 125 60 384 124 61 385 151 74 386 152 60 387 124 74 388 152 73 389 125 61 390 151 63 391 153 75 392 154 61 393 151 75 394 154 74 395 152 62 396 123 75 397 154 63 398 153 75 399 154 62 400 123 72 401 126 73 402 136 76 403 156 72 404 138 76 405 156 73 406 136 77 407 155 74 408 137 77 409 155 73 410 136 77 411 155 74 412 137 78 413 160 75 414 135 79 415 158 74 416 157 74 417 157 79 418 158 78 419 159 72 420 138 76 421 156 75 422 135 75 423 135 76 424 156 79 425 158 76 426 142 78 427 140 79 428 141 78 429 140 76 430 142 77 431 139</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_Bucket_01_visual" name="aws_robomaker_warehouse_Bucket_01_visual">
<node name="aws_robomaker_warehouse_Bucket_01_visual" id="aws_robomaker_warehouse_Bucket_01_visual" layer="aws_robomaker_warehouse_Bucket_01" sid="aws_robomaker_warehouse_Bucket_01_visual"><matrix sid="matrix">1.000000 0.000000 0.000000 -0.000031 0.000000 1.000000 0.000000 0.168701 0.000000 0.000000 1.000000 0.490845 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_Bucket_01_visual-lib"><bind_material><technique_common><instance_material symbol="Material #946392" target="#Material #946392"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_Bucket_01_visual"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_Bucket_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,63 @@
<?xml version='1.0'?>
<sdf version='1.6'>
<model name='aws_robomaker_warehouse_Bucket_01'>
<link name='body'>
<inertial>
<mass>2</mass>
<pose frame=''>0 0 0 0 0 0</pose>
<inertia>
<ixx>0.570</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>0.474</iyy>
<iyz>0</iyz>
<izz>0.391</izz>
</inertia>
</inertial>
<pose frame=''>0 0 0 0 -0 0</pose>
<self_collide>0</self_collide>
<kinematic>0</kinematic>
<gravity>1</gravity>
<visual name='visual'>
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_Bucket_01/meshes/aws_robomaker_warehouse_Bucket_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
<collision name='collision_0'>
<laser_retro>0</laser_retro>
<max_contacts>10</max_contacts>
<pose frame=''>0 0 0 0 -0 0</pose>
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_Bucket_01/meshes/aws_robomaker_warehouse_Bucket_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.4</mu>
<mu2>0.4</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
<torsional>
<coefficient>1</coefficient>
<patch_radius>0</patch_radius>
<surface_radius>0</surface_radius>
<use_patch_radius>1</use_patch_radius>
<ode>
<slip>0</slip>
</ode>
</torsional>
</friction>
</surface>
</collision>
</link>
<static>true</static>
</model>
</sdf>

View File

@@ -0,0 +1,327 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-03-18T11:45:58Z</created><keywords></keywords><modified>2019-03-18T11:45:58Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_ClutteringA_01_collision-lib" name="aws_robomaker_warehouse_ClutteringA_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_ClutteringA_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_ClutteringA_01_collision-POSITION-array" count="96">
-94.500908 -100.041384 3.000000
62.468575 -100.041384 3.000000
-94.500908 80.061399 3.000000
62.468575 80.061399 3.000000
-94.500908 -100.041384 111.551331
62.468575 -100.041384 111.551331
-94.500908 80.061399 111.551331
62.468575 80.061399 111.551331
29.526070 43.870054 3.000000
96.793404 43.870054 3.000000
29.526070 98.479551 3.000000
96.793404 100.129454 3.000000
29.526070 43.870054 73.674812
96.793404 43.870054 73.674812
29.526070 98.479551 73.674812
96.793404 100.129454 73.674812
56.843697 -49.131350 3.000000
46.691963 22.638792 3.000000
99.844673 23.109861 3.000000
107.644112 -43.094973 3.000000
56.843697 -49.131350 73.674812
107.644112 -43.094973 73.674812
99.844673 23.109861 73.674812
46.691963 22.638792 73.674812
-108.431084 -32.400026 3.000000
-108.431084 18.446653 3.000000
-88.055717 18.917723 3.000000
-84.168144 -31.578005 3.000000
-108.431084 -32.400026 73.674812
-84.168144 -31.578005 73.674812
-88.055717 18.917723 73.674812
-108.431084 18.446653 73.674812
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringA_01_collision-POSITION-array" count="32" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ClutteringA_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_ClutteringA_01_collision-Normal0-array" count="432">
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
-0.024520 0.999699 0.000000
-0.024520 0.999699 0.000000
-0.024520 0.999699 0.000000
-0.024520 0.999699 0.000000
-0.024520 0.999699 0.000000
-0.024520 0.999699 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.117995 -0.993014 0.000000
0.117995 -0.993014 0.000000
0.117995 -0.993014 0.000000
0.117995 -0.993014 0.000000
0.117995 -0.993014 0.000000
0.117995 -0.993014 0.000000
0.993132 0.116999 0.000000
0.993132 0.116999 0.000000
0.993132 0.116999 0.000000
0.993132 0.116999 0.000000
0.993132 0.116999 0.000000
0.993132 0.116999 0.000000
-0.008862 0.999961 0.000000
-0.008862 0.999961 0.000000
-0.008862 0.999961 0.000000
-0.008862 0.999961 0.000000
-0.008862 0.999961 0.000000
-0.008862 0.999961 0.000000
-0.990144 -0.140054 0.000000
-0.990144 -0.140054 0.000000
-0.990144 -0.140054 0.000000
-0.990144 -0.140054 0.000000
-0.990144 -0.140054 0.000000
-0.990144 -0.140054 0.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.033860 -0.999427 0.000000
0.033860 -0.999427 0.000000
0.033860 -0.999427 0.000000
0.033860 -0.999427 0.000000
0.033860 -0.999427 0.000000
0.033860 -0.999427 0.000000
0.997050 0.076761 0.000000
0.997050 0.076761 0.000000
0.997050 0.076761 0.000000
0.997050 0.076761 0.000000
0.997050 0.076761 0.000000
0.997050 0.076761 0.000000
-0.023113 0.999733 0.000000
-0.023113 0.999733 0.000000
-0.023113 0.999733 0.000000
-0.023113 0.999733 0.000000
-0.023113 0.999733 0.000000
-0.023113 0.999733 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringA_01_collision-Normal0-array" count="144" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ClutteringA_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_ClutteringA_01_collision-UV0-array" count="192">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
1.000000 1.000000
0.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringA_01_collision-UV0-array" count="96" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_ClutteringA_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_ClutteringA_01_collision-POSITION"/>
</vertices>
<triangles count="48"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_ClutteringA_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_ClutteringA_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_ClutteringA_01_collision-UV0"/><p> 1 0 1 0 1 0 3 2 3 0 3 0 2 4 2 3 5 3 7 6 7 6 7 6 4 8 4 7 9 7 4 10 4 5 11 5 5 12 11 4 13 10 0 14 8 5 15 11 0 16 8 1 17 9 7 18 15 5 19 14 1 20 12 7 21 15 1 22 12 3 23 13 6 24 19 7 25 18 3 26 16 6 27 19 3 28 16 2 29 17 4 30 23 6 31 22 2 32 20 4 33 23 2 34 20 0 35 21 9 36 25 10 37 26 11 38 27 10 39 26 9 40 25 8 41 24 14 42 30 13 43 29 15 44 31 13 45 29 14 46 30 12 47 28 13 48 35 12 49 34 8 50 32 13 51 35 8 52 32 9 53 33 15 54 39 13 55 38 9 56 36 15 57 39 9 58 36 11 59 37 14 60 43 15 61 42 11 62 40 14 63 43 11 64 40 10 65 41 12 66 47 14 67 46 10 68 44 12 69 47 10 70 44 8 71 45 19 72 51 16 73 48 18 74 50 16 75 48 17 76 49 18 77 50 22 78 54 23 79 55 20 80 52 22 81 54 20 82 52 21 83 53 21 84 58 20 85 59 16 86 56 21 87 58 16 88 56 19 89 57 22 90 62 21 91 63 19 92 60 22 93 62 19 94 60 18 95 61 23 96 66 22 97 67 18 98 64 23 99 66 18 100 64 17 101 65 20 102 70 23 103 71 17 104 68 20 105 70 17 106 68 16 107 69 26 108 74 27 109 75 24 110 72 24 111 72 25 112 73 26 113 74 31 114 79 28 115 76 30 116 78 30 117 78 28 118 76 29 119 77 28 120 83 24 121 80 29 122 82 29 123 82 24 124 80 27 125 81 30 126 86 29 127 87 27 128 84 30 129 86 27 130 84 26 131 85 30 132 91 26 133 88 31 134 90 31 135 90 26 136 88 25 137 89 28 138 94 31 139 95 25 140 92 28 141 94 25 142 92 24 143 93</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_ClutteringA_01_collision" name="aws_robomaker_warehouse_ClutteringA_01_collision">
<node name="aws_robomaker_warehouse_ClutteringA_01_collision" id="aws_robomaker_warehouse_ClutteringA_01_collision" layer="Cluttering" sid="aws_robomaker_warehouse_ClutteringA_01_collision"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_ClutteringA_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_ClutteringA_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_ClutteringA_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_ClutteringA_01">
<link name="link">
<inertial>
<mass>2</mass>
<inertia>
<ixx>0.841</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>0.954</iyy>
<iyz>0</iyz>
<izz>1.422</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ClutteringA_01/meshes/aws_robomaker_warehouse_ClutteringA_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.6</mu>
<mu2>0.6</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
<torsional>
<coefficient>1</coefficient>
<patch_radius>0</patch_radius>
<surface_radius>0</surface_radius>
<use_patch_radius>1</use_patch_radius>
<ode>
<slip>0</slip>
</ode>
</torsional>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ClutteringA_01/meshes/aws_robomaker_warehouse_ClutteringA_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-03-20T02:46:25Z</created><keywords></keywords><modified>2019-03-20T02:46:25Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_ClutteringC_01_collision-lib" name="aws_robomaker_warehouse_ClutteringC_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_ClutteringC_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_ClutteringC_01_collision-POSITION-array" count="24">
-88.666687 -102.994263 3.000000
88.666687 -102.994263 3.000000
-88.666687 102.994263 3.000000
88.666687 102.994263 3.000000
-88.666687 -102.994263 179.031189
88.666687 -102.994263 179.031189
-88.666687 102.994263 179.031189
88.666687 102.994263 179.031189
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringC_01_collision-POSITION-array" count="8" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ClutteringC_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_ClutteringC_01_collision-Normal0-array" count="108">
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringC_01_collision-Normal0-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ClutteringC_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_ClutteringC_01_collision-UV0-array" count="48">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringC_01_collision-UV0-array" count="24" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_ClutteringC_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_ClutteringC_01_collision-POSITION"/>
</vertices>
<triangles count="12"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_ClutteringC_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_ClutteringC_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_ClutteringC_01_collision-UV0"/><p> 1 0 1 0 1 0 3 2 3 0 3 0 2 4 2 3 5 3 7 6 7 6 7 6 4 8 4 7 9 7 4 10 4 5 11 5 5 12 11 4 13 10 0 14 8 5 15 11 0 16 8 1 17 9 7 18 15 5 19 14 1 20 12 7 21 15 1 22 12 3 23 13 6 24 19 7 25 18 3 26 16 6 27 19 3 28 16 2 29 17 4 30 23 6 31 22 2 32 20 4 33 23 2 34 20 0 35 21</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_ClutteringC_01_collision" name="aws_robomaker_warehouse_ClutteringC_01_collision">
<node name="aws_robomaker_warehouse_ClutteringC_01_collision" id="aws_robomaker_warehouse_ClutteringC_01_collision" layer="Cluttering" sid="aws_robomaker_warehouse_ClutteringC_01_collision"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_ClutteringC_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_ClutteringC_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_ClutteringC_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_ClutteringC_01">
<link name="link">
<inertial>
<mass>1</mass>
<inertia>
<ixx>1.558</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>1.821</iyy>
<iyz>0</iyz>
<izz>1.892</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ClutteringC_01/meshes/aws_robomaker_warehouse_ClutteringC_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.6</mu>
<mu2>0.6</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
<torsional>
<coefficient>1</coefficient>
<patch_radius>0</patch_radius>
<surface_radius>0</surface_radius>
<use_patch_radius>1</use_patch_radius>
<ode>
<slip>0</slip>
</ode>
</torsional>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ClutteringC_01/meshes/aws_robomaker_warehouse_ClutteringC_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-03-25T05:42:49Z</created><keywords></keywords><modified>2019-03-25T05:42:49Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_ClutteringD_01_collision-lib" name="aws_robomaker_warehouse_ClutteringD_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_ClutteringD_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_ClutteringD_01_collision-POSITION-array" count="24">
-50.844025 33.298004 -76.084843
50.844025 33.298004 -76.084843
-50.844025 182.463806 -76.084846
50.844025 182.463806 -76.084846
-50.844025 33.298012 76.084789
50.844025 33.298012 76.084789
-50.844025 182.463806 76.084789
50.844025 182.463806 76.084789
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringD_01_collision-POSITION-array" count="8" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ClutteringD_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_ClutteringD_01_collision-Normal0-array" count="108">
0.000000 -0.000000 -1.000000
0.000000 -0.000000 -1.000000
0.000000 -0.000000 -1.000000
0.000000 -0.000000 -1.000000
0.000000 -0.000000 -1.000000
0.000000 -0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringD_01_collision-Normal0-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ClutteringD_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_ClutteringD_01_collision-UV0-array" count="48">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ClutteringD_01_collision-UV0-array" count="24" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_ClutteringD_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_ClutteringD_01_collision-POSITION"/>
</vertices>
<triangles count="12"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_ClutteringD_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_ClutteringD_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_ClutteringD_01_collision-UV0"/><p> 1 0 1 0 1 0 3 2 3 0 3 0 2 4 2 3 5 3 7 6 7 6 7 6 4 8 4 7 9 7 4 10 4 5 11 5 5 12 11 4 13 10 0 14 8 5 15 11 0 16 8 1 17 9 5 18 14 3 19 13 7 20 15 3 21 13 5 22 14 1 23 12 6 24 19 7 25 18 3 26 16 6 27 19 3 28 16 2 29 17 4 30 23 6 31 22 2 32 20 4 33 23 2 34 20 0 35 21</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_ClutteringD_01_collision" name="aws_robomaker_warehouse_ClutteringD_01_collision">
<node name="aws_robomaker_warehouse_ClutteringD_01_collision" id="aws_robomaker_warehouse_ClutteringD_01_collision" layer="items_xiugai" sid="aws_robomaker_warehouse_ClutteringD_01_collision"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_ClutteringD_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_ClutteringD_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_ClutteringD_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_ClutteringD_01">
<link name="link">
<inertial>
<mass>1</mass>
<inertia>
<ixx>1.558</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>1.821</iyy>
<iyz>0</iyz>
<izz>1.892</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ClutteringD_01/meshes/aws_robomaker_warehouse_ClutteringD_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.6</mu>
<mu2>0.6</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
<torsional>
<coefficient>1</coefficient>
<patch_radius>0</patch_radius>
<surface_radius>0</surface_radius>
<use_patch_radius>1</use_patch_radius>
<ode>
<slip>0</slip>
</ode>
</torsional>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ClutteringD_01/meshes/aws_robomaker_warehouse_ClutteringD_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_DeskC_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_DeskC_01">
<link name="link">
<inertial>
<mass>1</mass>
<inertia>
<ixx>0.608</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>0.476</iyy>
<iyz>0</iyz>
<izz>0.542</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_DeskC_01/meshes/aws_robomaker_warehouse_DeskC_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.3</mu>
<mu2>0.3</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_DeskC_01/meshes/aws_robomaker_warehouse_DeskC_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-05-15T08:16:04Z</created><keywords></keywords><modified>2019-05-15T08:16:04Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_GroundB_01_collision-lib" name="aws_robomaker_warehouse_GroundB_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_GroundB_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_GroundB_01_collision-POSITION-array" count="24">
-699.023499 -1045.333252 -0.000123
699.023499 -1045.333252 -0.000124
-699.023499 -1045.333252 12.431540
699.023499 -1045.333252 12.431539
-699.023499 1045.333252 0.000128
699.023499 1045.333252 0.000129
-699.023499 1045.333130 12.431791
699.023499 1045.333130 12.431792
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_GroundB_01_collision-POSITION-array" count="8" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_GroundB_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_GroundB_01_collision-Normal0-array" count="108">
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_GroundB_01_collision-Normal0-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_GroundB_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_GroundB_01_collision-UV0-array" count="48">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_GroundB_01_collision-UV0-array" count="24" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_GroundB_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_GroundB_01_collision-POSITION"/>
</vertices>
<triangles count="12"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_GroundB_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_GroundB_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_GroundB_01_collision-UV0"/><p> 3 0 3 2 1 2 0 2 0 3 3 3 0 4 0 1 5 1 6 6 6 5 7 5 4 8 4 5 9 5 6 10 6 7 11 7 1 12 9 0 13 8 5 14 11 0 15 8 4 16 10 5 17 11 7 18 15 3 19 13 1 20 12 7 21 15 1 22 12 5 23 14 6 24 19 3 25 16 7 26 18 3 27 16 6 28 19 2 29 17 6 30 22 0 31 21 2 32 20 0 33 21 6 34 22 4 35 23</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_GroundB_01_collision" name="aws_robomaker_warehouse_GroundB_01_collision">
<node name="aws_robomaker_warehouse_GroundB_01_collision" id="aws_robomaker_warehouse_GroundB_01_collision" layer="zhenghe_collution" sid="aws_robomaker_warehouse_GroundB_01_collision"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_GroundB_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_GroundB_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,706 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-05-15T08:15:48Z</created><keywords></keywords><modified>2019-05-15T08:15:48Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_images>
<image id="Map #1123124520-image" name="Map #1123124520">
<init_from>../materials/textures/aws_robomaker_warehouse_GroundB_01.png</init_from>
</image>
<image id="Map #1123124521-image" name="Map #1123124521">
<init_from>../materials/textures/aws_robomaker_warehouse_GroundB_02.png</init_from>
</image>
</library_images>
<library_materials>
<material id="Material #946568" name="Material #946568">
<instance_effect url="#Material #946568-fx"/>
</material>
<material id="Material #946569" name="Material #946569">
<instance_effect url="#Material #946569-fx"/>
</material>
</library_materials>
<library_effects>
<effect id="Material #946568-fx" name="Material #946568">
<profile_COMMON>
<technique sid="standard">
<phong>
<emission>
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
</emission>
<ambient>
<color sid="ambient">0.588000 0.588000 0.588000 1.000000</color>
</ambient>
<diffuse>
<texture texture="Map #1123124520-image" texcoord="CHANNEL0">
<extra>
<technique profile="MAYA">
<wrapU sid="wrapU0">TRUE</wrapU>
<wrapV sid="wrapV0">TRUE</wrapV>
<blend_mode>ADD</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
</specular>
<shininess>
<float sid="shininess">2.000000</float>
</shininess>
<reflective>
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
</reflective>
<reflectivity>
<float sid="reflectivity">1.000000</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
</transparent>
<transparency>
<float sid="transparency">0.000000</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
</effect>
<effect id="Material #946569-fx" name="Material #946569">
<profile_COMMON>
<technique sid="standard">
<phong>
<emission>
<color sid="emission">0.000000 0.000000 0.000000 1.000000</color>
</emission>
<ambient>
<color sid="ambient">0.588000 0.588000 0.588000 1.000000</color>
</ambient>
<diffuse>
<texture texture="Map #1123124521-image" texcoord="CHANNEL0">
<extra>
<technique profile="MAYA">
<wrapU sid="wrapU0">TRUE</wrapU>
<wrapV sid="wrapV0">TRUE</wrapV>
<blend_mode>ADD</blend_mode>
</technique>
</extra>
</texture>
</diffuse>
<specular>
<color sid="specular">0.000000 0.000000 0.000000 1.000000</color>
</specular>
<shininess>
<float sid="shininess">2.000000</float>
</shininess>
<reflective>
<color sid="reflective">0.000000 0.000000 0.000000 1.000000</color>
</reflective>
<reflectivity>
<float sid="reflectivity">1.000000</float>
</reflectivity>
<transparent opaque="RGB_ZERO">
<color sid="transparent">1.000000 1.000000 1.000000 1.000000</color>
</transparent>
<transparency>
<float sid="transparency">0.000000</float>
</transparency>
</phong>
</technique>
</profile_COMMON>
</effect>
</library_effects>
<library_geometries>
<geometry id="aws_robomaker_warehouse_GroundB_01_visual-lib" name="aws_robomaker_warehouse_GroundB_01_visualMesh">
<mesh>
<source id="aws_robomaker_warehouse_GroundB_01_visual-POSITION">
<float_array id="aws_robomaker_warehouse_GroundB_01_visual-POSITION-array" count="300">
-699.023499 -1045.333252 -0.000123
699.023499 -1045.333252 -0.000124
-699.023499 -1045.333252 12.431540
699.023499 -1045.333252 12.431539
-699.023499 1045.333252 0.000128
699.023499 1045.333252 0.000129
-699.023499 1045.333130 12.431791
699.023499 1045.333130 12.431792
-255.414734 -237.748291 12.445392
44.585266 -237.748291 12.445392
-255.414734 62.251705 12.445440
44.585266 62.251705 12.445440
-248.186340 -230.519897 12.445393
37.356873 -230.519897 12.445393
37.356873 55.023312 12.445439
-248.186340 55.023312 12.445439
-255.414734 -882.155273 12.445316
44.585266 -882.155273 12.445316
-255.414734 -582.155273 12.445366
44.585266 -582.155273 12.445366
-248.186340 -874.926880 12.445318
37.356873 -874.926880 12.445318
37.356873 -589.383667 12.445364
-248.186340 -589.383667 12.445364
-255.414734 -559.951782 12.445369
44.585266 -559.951782 12.445369
-255.414734 -259.951782 12.445388
44.585266 -259.951782 12.445388
-248.186340 -552.723389 12.445371
37.356873 -552.723389 12.445371
37.356873 -267.180176 12.445387
-248.186340 -267.180176 12.445387
-255.414734 84.455200 12.445444
44.585266 84.455200 12.445444
-255.414734 384.455200 12.445462
44.585266 384.455200 12.445462
-248.186340 91.683594 12.445445
37.356873 91.683594 12.445445
37.356873 377.226807 12.445461
-248.186340 377.226807 12.445461
-255.414734 406.658691 12.445527
44.585266 406.658691 12.445527
-255.414734 706.658691 12.445576
44.585266 706.658691 12.445576
-248.186340 413.887085 12.445528
37.356873 413.887085 12.445528
37.356873 699.430298 12.445575
-248.186340 699.430298 12.445575
132.339752 -1043.718018 12.445252
141.445953 -1043.718018 12.445252
132.339752 1046.807373 12.445501
141.445953 1046.807373 12.445501
141.445953 -908.130371 12.445269
132.339752 -908.130371 12.445269
141.445953 -983.652710 12.445258
132.339752 -983.652710 12.445258
141.445953 -992.508667 12.445259
132.339752 -992.508667 12.445259
-423.674530 -983.652710 12.445258
-423.674530 -992.508667 12.445259
141.445953 -899.566162 12.445268
132.339752 -899.566162 12.445268
-337.738800 -908.130371 12.445269
-337.738800 -899.566162 12.445268
-329.554382 -908.130371 12.445269
-329.554382 -899.566162 12.445268
-337.738800 1046.807373 12.445501
-329.554382 1046.807373 12.445501
-415.294403 -983.652710 12.445258
-415.294403 -992.508667 12.445259
-423.674530 1046.807373 12.445501
-415.294403 1046.807373 12.445501
-423.674530 883.609009 12.445482
-415.294403 883.609009 12.445482
-415.294403 959.849304 12.445491
-423.674530 959.849304 12.445491
-423.674591 875.711548 12.445481
-415.294403 875.711609 12.445481
-686.119019 883.609009 12.445482
-686.119019 875.711548 12.445481
-415.294403 968.018066 12.445493
-423.674530 968.018066 12.445493
-689.973267 959.849304 12.445491
-689.973267 968.018066 12.445493
215.702194 -1044.132324 12.445252
224.808395 -1044.132324 12.445252
215.702194 177.500122 12.445397
224.808395 177.500122 12.445397
224.808395 168.217163 12.445396
215.702194 168.217163 12.445396
700.987549 177.500122 12.445397
700.987549 168.217163 12.445396
215.702194 258.095581 12.445407
224.808395 258.095581 12.445407
224.808395 1046.807373 12.445501
215.702194 1046.807373 12.445501
224.808395 266.876099 12.445409
215.702194 266.876099 12.445409
700.987549 258.095581 12.445407
700.987549 266.876099 12.445409
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_GroundB_01_visual-POSITION-array" count="100" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_GroundB_01_visual-Normal0">
<float_array id="aws_robomaker_warehouse_GroundB_01_visual-Normal0-array" count="846">
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
-0.000000 1.000000 0.000010
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
0.000000 -0.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_GroundB_01_visual-Normal0-array" count="282" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_GroundB_01_visual-UV0">
<float_array id="aws_robomaker_warehouse_GroundB_01_visual-UV0-array" count="328">
4.846894 2.550678
4.846894 4.846265
4.826477 4.846265
4.826477 2.550678
4.783730 2.550678
4.804147 2.550678
4.804147 4.846265
4.783730 4.846265
1.222342 2.572054
4.655206 2.572054
4.655206 4.867640
1.222342 4.867640
1.222341 4.953428
4.655206 4.953428
4.655205 4.973845
1.222341 4.973845
1.179594 0.114090
4.612459 0.114091
4.612458 2.409678
1.179594 2.409678
1.414463 2.740246
1.414463 -0.692619
1.434875 -0.692619
1.434875 2.740246
-1.691137 1.355757
-1.976730 0.985989
-1.933884 0.943143
-1.733945 1.312949
-1.976730 -0.792248
-1.933884 -0.749402
-1.691137 -0.420905
-1.733945 -0.378097
-1.799502 -0.426135
-1.798186 -0.952645
-1.755340 -0.995491
-1.842348 -0.468980
-1.798186 -2.730882
-1.755340 -2.688036
-1.799502 -2.204372
-1.842348 -2.161526
-1.799502 1.365183
-1.798186 0.838673
-1.755340 0.795827
-1.842348 1.322337
-1.798186 -0.939565
-1.755340 -0.896719
-1.799502 -0.413054
-1.842348 -0.370208
-1.730909 -0.433973
-1.875866 -0.575192
-1.833020 -0.618038
-1.773717 -0.476781
-1.875866 -2.353429
-1.833020 -2.310584
-1.730909 -2.210634
-1.773717 -2.167826
-1.958919 2.451030
-1.717841 -0.433973
-1.675033 -0.476781
-2.001765 2.408185
-1.717841 -2.210634
-1.675033 -2.167826
-1.958919 0.672793
-2.001765 0.715639
0.521328 0.470354
0.521328 0.474995
0.410392 1.020932
0.410392 1.016567
0.415033 1.016567
-1.461452 0.891229
0.495226 0.474995
-1.461452 0.864380
0.495226 0.470354
-1.461452 0.858776
-1.461452 0.864380
-1.461452 0.858776
0.415033 1.020932
-1.461452 0.896788
-1.461452 0.896788
-1.461452 0.891229
-1.461452 0.891229
-1.461452 0.896788
-1.461452 0.896788
-1.461452 0.896788
-1.461452 0.864380
-1.461452 0.858776
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
-1.461452 0.864380
0.436771 0.036056
0.441413 0.036056
0.422756 0.026574
0.422756 0.021932
0.418024 0.026574
0.418024 0.021932
0.422756 0.269288
0.418024 0.269288
-1.767357 1.965086
-1.767357 0.186848
0.425656 0.029564
0.430298 0.029564
0.430298 0.034040
0.425656 0.034040
0.430297 0.431580
0.425656 0.431580
0.444403 0.403750
0.448879 0.403750
-1.724511 0.229694
-1.724511 1.922239
-1.855502 0.428975
-1.898310 0.471783
-1.855502 2.205637
-1.898310 2.162829
-1.842433 0.376135
-1.842433 -1.400526
-1.799625 -1.357718
-1.799626 0.333327
-1.743367 -2.377502
-1.786175 -2.334694
-1.743367 -0.600840
-1.786175 -0.643649
-1.795829 2.663701
-1.795829 0.885463
-1.752983 0.928309
-1.752983 2.620854
-1.855502 -1.400526
-1.898310 -1.357718
-1.855502 0.376135
-1.898310 0.333327
-1.842434 2.165865
-1.842433 0.389204
-1.799626 0.432011
-1.799626 2.123057
-1.743367 -0.587772
-1.786175 -0.544964
-1.743367 1.188889
-1.786175 1.146081
-1.842434 3.955595
-1.842434 2.178934
-1.799626 2.221741
-1.799626 3.912786
-1.743367 1.201958
-1.786175 1.244766
-1.743367 2.978619
-1.786175 2.935811
0.410392 0.024476
0.415033 0.024476
0.490712 0.474995
0.490712 0.470354
0.441413 0.654006
0.436771 0.654006
0.444403 0.646464
0.448879 0.646464
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_GroundB_01_visual-UV0-array" count="164" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_GroundB_01_visual-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_GroundB_01_visual-POSITION"/>
</vertices>
<triangles count="12" material="Material #946568"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_GroundB_01_visual-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_GroundB_01_visual-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_GroundB_01_visual-UV0"/><p> 3 0 2 2 1 3 0 2 0 3 3 2 0 4 0 1 5 1 6 6 5 5 7 7 4 8 4 5 9 7 6 10 5 7 11 6 1 12 11 0 13 8 5 14 10 0 15 8 4 16 9 5 17 10 7 18 14 3 19 15 1 20 12 7 21 14 1 22 12 5 23 13 6 24 18 3 25 16 7 26 17 3 27 16 6 28 18 2 29 19 6 30 21 0 31 23 2 32 20 0 33 23 6 34 21 4 35 22</p></triangles>
<triangles count="82" material="Material #946569"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_GroundB_01_visual-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_GroundB_01_visual-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_GroundB_01_visual-UV0"/><p> 8 36 108 9 37 109 13 38 118 8 39 108 13 40 118 12 41 119 9 42 25 11 43 28 14 44 29 9 45 25 14 46 29 13 47 26 11 48 120 10 49 122 15 50 123 11 51 120 15 52 123 14 53 121 10 54 30 8 55 24 12 56 27 10 57 30 12 58 27 15 59 31 16 60 124 17 61 125 21 62 126 16 63 124 21 64 126 20 65 127 17 66 33 19 67 36 22 68 37 17 69 33 22 70 37 21 71 34 19 72 128 18 73 130 23 74 131 19 75 128 23 76 131 22 77 129 18 78 38 16 79 32 20 80 35 18 81 38 20 82 35 23 83 39 24 84 132 25 85 133 29 86 134 24 87 132 29 88 134 28 89 135 25 90 41 27 91 44 30 92 45 25 93 41 30 94 45 29 95 42 27 96 136 26 97 138 31 98 139 27 99 136 31 100 139 30 101 137 26 102 46 24 103 40 28 104 43 26 105 46 28 106 43 31 107 47 32 108 140 33 109 141 37 110 142 32 111 140 37 112 142 36 113 143 33 114 49 35 115 52 38 116 53 33 117 49 38 118 53 37 119 50 35 120 144 34 121 146 39 122 147 35 123 144 39 124 147 38 125 145 34 126 54 32 127 48 36 128 51 34 129 54 36 130 51 39 131 55 40 132 148 41 133 149 45 134 150 40 135 148 45 136 150 44 137 151 41 138 57 43 139 60 46 140 61 41 141 57 46 142 61 45 143 58 43 144 152 42 145 154 47 146 155 43 147 152 47 148 155 46 149 153 42 150 62 40 151 56 44 152 59 42 153 62 44 154 59 47 155 63 57 156 72 49 157 65 56 158 70 49 159 65 57 160 72 48 161 64 61 162 68 53 163 76 60 164 67 60 165 67 53 166 76 52 167 66 55 168 159 57 169 72 54 170 158 54 171 158 57 172 72 56 173 70 69 174 85 55 175 71 68 176 84 55 177 71 69 178 85 57 179 73 50 180 157 61 181 68 51 182 156 51 183 156 61 184 68 60 185 67 61 186 77 65 187 81 64 188 80 61 189 77 64 190 80 53 191 69 65 192 81 63 193 78 64 194 80 63 195 78 62 196 79 64 197 80 66 198 83 63 199 78 67 200 82 67 201 82 63 202 78 65 203 81 68 204 84 58 205 74 69 206 85 58 207 74 59 208 75 69 209 85 76 210 92 68 211 84 77 212 93 68 213 84 76 214 92 58 215 74 81 216 97 75 217 91 80 218 96 80 219 96 75 220 91 74 221 90 72 222 88 77 223 93 73 224 89 77 225 93 72 226 88 76 227 92 78 228 94 76 229 92 72 230 88 76 231 92 78 232 94 79 233 95 81 234 97 71 235 86 70 236 87 71 237 86 81 238 97 80 239 96 83 240 98 75 241 91 81 242 97 75 243 91 83 244 98 82 245 99 89 246 161 84 247 100 88 248 160 88 249 160 84 250 100 85 251 101 86 252 105 89 253 103 87 254 104 87 255 104 89 256 103 88 257 102 88 258 102 91 259 106 87 260 104 90 261 107 87 262 104 91 263 106 97 264 113 93 265 111 96 266 112 93 267 111 97 268 113 92 269 110 95 270 115 97 271 113 94 272 114 94 273 114 97 274 113 96 275 112 93 276 162 98 277 116 96 278 163 99 279 117 96 280 163 98 281 116</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_GroundB_01_visual" name="aws_robomaker_warehouse_GroundB_01_visual">
<node name="aws_robomaker_warehouse_GroundB_01_visual" id="aws_robomaker_warehouse_GroundB_01_visual" layer="zhenghe" sid="aws_robomaker_warehouse_GroundB_01_visual"><matrix sid="matrix">1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_GroundB_01_visual-lib"><bind_material><technique_common><instance_material symbol="Material #946568" target="#Material #946568"/><instance_material symbol="Material #946569" target="#Material #946569"/></technique_common></bind_material></instance_geometry><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_GroundB_01_visual"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_GroundB_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_GroundB_01">
<link name="link">
<inertial>
<mass>1000</mass>
<inertia>
<ixx>1200083.33</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>8333416.66</iyy>
<iyz>0</iyz>
<izz>2033333.33</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_GroundB_01/meshes/aws_robomaker_warehouse_GroundB_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>100</mu>
<mu2>50</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_GroundB_01/meshes/aws_robomaker_warehouse_GroundB_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-04-04T08:27:36Z</created><keywords></keywords><modified>2019-04-04T08:27:36Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_Lamp_01_collision-lib" name="aws_robomaker_warehouse_Lamp_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_Lamp_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_Lamp_01_collision-POSITION-array" count="24">
-51.220013 -75.723572 -50.385498
51.220005 -75.723572 -50.385498
-51.220013 75.723572 -50.385498
51.220005 75.723572 -50.385498
-51.220005 -75.723572 50.385498
51.220013 -75.723572 50.385498
-51.220005 75.723572 50.385498
51.220013 75.723572 50.385498
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Lamp_01_collision-POSITION-array" count="8" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_Lamp_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_Lamp_01_collision-Normal0-array" count="108">
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Lamp_01_collision-Normal0-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_Lamp_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_Lamp_01_collision-UV0-array" count="48">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_Lamp_01_collision-UV0-array" count="24" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_Lamp_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_Lamp_01_collision-POSITION"/>
</vertices>
<triangles count="12"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_Lamp_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_Lamp_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_Lamp_01_collision-UV0"/><p> 1 0 1 0 1 0 3 2 3 0 3 0 2 4 2 3 5 3 7 6 7 6 7 6 4 8 4 7 9 7 4 10 4 5 11 5 4 12 10 1 13 9 5 14 11 1 15 9 4 16 10 0 17 8 7 18 15 5 19 14 1 20 12 7 21 15 1 22 12 3 23 13 6 24 19 7 25 18 3 26 16 6 27 19 3 28 16 2 29 17 4 30 23 6 31 22 2 32 20 4 33 23 2 34 20 0 35 21</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_Lamp_01_collision" name="aws_robomaker_warehouse_Lamp_01_collision">
<node name="aws_robomaker_warehouse_Lamp_01_collision" id="aws_robomaker_warehouse_Lamp_01_collision" sid="aws_robomaker_warehouse_Lamp_01_collision"><matrix sid="matrix">-0.999000 -0.000000 -0.000000 0.087481 -0.000000 0.000000 0.998995 0.000494 0.000000 1.002288 -0.000000 1325.909302 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_Lamp_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_Lamp_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_Lamp_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_Lamp_01">
<link name="link">
<inertial>
<mass>30</mass>
<inertia>
<ixx>907.144</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>104.950</iyy>
<iyz>0</iyz>
<izz>824.248</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_Lamp_01/meshes/aws_robomaker_warehouse_Lamp_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.2</mu>
<mu2>0.2</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_Lamp_01/meshes/aws_robomaker_warehouse_Lamp_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_PalletJackB_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_PalletJackB_01">
<link name="link">
<inertial>
<mass>2</mass>
<inertia>
<ixx>0.277</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>0.452</iyy>
<iyz>0</iyz>
<izz>0.268</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_PalletJackB_01/meshes/aws_robomaker_warehouse_PalletJackB_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.2</mu>
<mu2>0.2</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_PalletJackB_01/meshes/aws_robomaker_warehouse_PalletJackB_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-06-03T07:07:22Z</created><keywords></keywords><modified>2019-06-03T07:07:22Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_RoofB_01_collision-lib" name="aws_robomaker_warehouse_RoofB_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_RoofB_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_RoofB_01_collision-POSITION-array" count="24">
-686.312866 -88.698654 -1045.333374
711.734131 -88.698654 -1045.333374
-686.312866 21.739517 -1045.333496
711.734131 21.739517 -1045.333496
-686.312866 -88.698593 1045.333008
711.734131 -88.698593 1045.333008
-686.312866 21.739578 1045.333008
711.734131 21.739578 1045.333008
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_RoofB_01_collision-POSITION-array" count="8" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_RoofB_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_RoofB_01_collision-Normal0-array" count="108">
0.000000 -0.000001 -1.000000
0.000000 -0.000001 -1.000000
0.000000 -0.000001 -1.000000
0.000000 -0.000001 -1.000000
0.000000 -0.000001 -1.000000
0.000000 -0.000001 -1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 0.000000 1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
1.000000 0.000000 0.000000
0.000000 1.000000 -0.000000
0.000000 1.000000 -0.000000
0.000000 1.000000 -0.000000
0.000000 1.000000 -0.000000
0.000000 1.000000 -0.000000
0.000000 1.000000 -0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
-1.000000 0.000000 0.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_RoofB_01_collision-Normal0-array" count="36" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_RoofB_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_RoofB_01_collision-UV0-array" count="48">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_RoofB_01_collision-UV0-array" count="24" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_RoofB_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_RoofB_01_collision-POSITION"/>
</vertices>
<triangles count="12"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_RoofB_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_RoofB_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_RoofB_01_collision-UV0"/><p> 2 0 2 3 1 3 0 2 0 1 3 1 0 4 0 3 5 3 7 6 7 6 7 6 4 8 4 7 9 7 4 10 4 5 11 5 5 12 11 4 13 10 0 14 8 5 15 11 0 16 8 1 17 9 5 18 14 1 19 12 7 20 15 7 21 15 1 22 12 3 23 13 6 24 19 7 25 18 3 26 16 6 27 19 3 28 16 2 29 17 6 30 22 0 31 21 4 32 23 0 33 21 6 34 22 2 35 20</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_RoofB_01_collision" name="aws_robomaker_warehouse_RoofB_01_collision">
<node name="aws_robomaker_warehouse_RoofB_01_collision" id="aws_robomaker_warehouse_RoofB_01_collision" layer="zhenghe_collution" sid="aws_robomaker_warehouse_RoofB_01_collision"><matrix sid="matrix">1.000000 0.000000 0.000000 -12.710449 0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.000000 990.684692 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_RoofB_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_RoofB_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_RoofB_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_RoofB_01">
<link name="link">
<inertial>
<mass>1000</mass>
<pose frame=''>0 0 0 0 0 0</pose>
<inertia>
<ixx>834024.533</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>459441.200</iyy>
<iyz>0</iyz>
<izz>1302083.333</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_RoofB_01/meshes/aws_robomaker_warehouse_RoofB_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.6</mu>
<mu2>0.6</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
<torsional>
<coefficient>1</coefficient>
<patch_radius>0</patch_radius>
<surface_radius>0</surface_radius>
<use_patch_radius>1</use_patch_radius>
<ode>
<slip>0</slip>
</ode>
</torsional>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_RoofB_01/meshes/aws_robomaker_warehouse_RoofB_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 3 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

View File

@@ -0,0 +1,327 @@
<?xml version="1.0" encoding="utf-8"?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset><contributor><author></author><authoring_tool>FBX COLLADA exporter</authoring_tool><comments></comments></contributor><created>2019-05-15T10:09:41Z</created><keywords></keywords><modified>2019-05-15T10:09:41Z</modified><revision></revision><subject></subject><title></title><unit meter="0.010000" name="centimeter"></unit><up_axis>Z_UP</up_axis></asset>
<library_geometries>
<geometry id="aws_robomaker_warehouse_ShelfD_01_collision-lib" name="aws_robomaker_warehouse_ShelfD_01_collisionMesh">
<mesh>
<source id="aws_robomaker_warehouse_ShelfD_01_collision-POSITION">
<float_array id="aws_robomaker_warehouse_ShelfD_01_collision-POSITION-array" count="96">
-45.044750 -57.560341 195.803909
42.866188 -57.560341 195.803955
-45.044750 133.195770 195.803955
42.866188 133.195770 195.803986
-45.044781 -57.560341 -195.804031
42.866158 -57.560341 -195.804001
-45.044781 133.195770 -195.803986
42.866158 133.195770 -195.803970
-44.361427 -128.142014 1.402283
42.927315 -128.142014 1.402374
-44.361427 133.195755 1.402374
42.927315 133.195755 1.402420
-44.361412 -128.141998 -4.198639
42.927338 -128.141998 -4.198563
-44.361412 133.195786 -4.198517
42.927338 133.195786 -4.198456
-44.361458 -128.142029 -190.318237
42.927284 -128.142029 -190.318130
42.927284 133.195740 -190.318039
-44.361458 133.195740 -190.318130
-44.361443 -128.142014 -195.919159
-44.361443 133.195770 -195.919022
42.927307 133.195770 -195.918884
42.927307 -128.142014 -195.919037
-44.361401 -128.141998 195.912140
42.927341 -128.141998 195.912231
-44.361401 133.195770 195.912231
42.927341 133.195770 195.912277
-44.361378 -128.141983 190.311218
42.927372 -128.141983 190.311295
-44.361378 133.195801 190.311340
42.927372 133.195801 190.311401
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ShelfD_01_collision-POSITION-array" count="32" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ShelfD_01_collision-Normal0">
<float_array id="aws_robomaker_warehouse_ShelfD_01_collision-Normal0-array" count="432">
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
-0.000000 -0.000000 1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 0.000000 -1.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
0.000000 -1.000000 0.000000
1.000000 0.000000 -0.000000
1.000000 0.000000 -0.000000
1.000000 0.000000 -0.000000
1.000000 0.000000 -0.000000
1.000000 0.000000 -0.000000
1.000000 0.000000 -0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
0.000000 1.000000 0.000000
-1.000000 -0.000000 0.000000
-1.000000 -0.000000 0.000000
-1.000000 -0.000000 0.000000
-1.000000 -0.000000 0.000000
-1.000000 -0.000000 0.000000
-1.000000 -0.000000 0.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
0.000001 0.000001 -1.000000
0.000001 0.000001 -1.000000
0.000001 0.000001 -1.000000
0.000001 0.000001 -1.000000
0.000001 0.000001 -1.000000
0.000001 0.000001 -1.000000
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
1.000000 -0.000000 0.000004
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-1.000000 0.000000 -0.000003
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
-0.000001 -0.000000 1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000001 0.000000 -1.000000
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
0.000000 -1.000000 -0.000003
1.000000 -0.000000 0.000005
1.000000 -0.000000 0.000005
1.000000 -0.000000 0.000005
1.000000 -0.000000 0.000005
1.000000 -0.000000 0.000005
1.000000 -0.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-0.000000 1.000000 0.000005
-1.000000 0.000000 -0.000004
-1.000000 0.000000 -0.000004
-1.000000 0.000000 -0.000004
-1.000000 0.000000 -0.000004
-1.000000 0.000000 -0.000004
-1.000000 0.000000 -0.000004
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ShelfD_01_collision-Normal0-array" count="144" stride="3">
<param name="X" type="float"/>
<param name="Y" type="float"/>
<param name="Z" type="float"/>
</accessor>
</technique_common>
</source>
<source id="aws_robomaker_warehouse_ShelfD_01_collision-UV0">
<float_array id="aws_robomaker_warehouse_ShelfD_01_collision-UV0-array" count="192">
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
0.000000 0.000000
0.000000 1.000000
1.000000 1.000000
1.000000 0.000000
1.000000 0.000000
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
0.000000 0.000000
1.000000 0.000000
0.000000 1.000000
1.000000 1.000000
</float_array>
<technique_common>
<accessor source="#aws_robomaker_warehouse_ShelfD_01_collision-UV0-array" count="96" stride="2">
<param name="S" type="float"/>
<param name="T" type="float"/>
</accessor>
</technique_common>
</source>
<vertices id="aws_robomaker_warehouse_ShelfD_01_collision-VERTEX">
<input semantic="POSITION" source="#aws_robomaker_warehouse_ShelfD_01_collision-POSITION"/>
</vertices>
<triangles count="48"><input semantic="VERTEX" offset="0" source="#aws_robomaker_warehouse_ShelfD_01_collision-VERTEX"/><input semantic="NORMAL" offset="1" source="#aws_robomaker_warehouse_ShelfD_01_collision-Normal0"/><input semantic="TEXCOORD" offset="2" set="0" source="#aws_robomaker_warehouse_ShelfD_01_collision-UV0"/><p> 2 0 2 0 1 0 3 2 3 3 3 3 0 4 0 1 5 1 7 6 7 5 7 5 4 8 4 4 9 4 6 10 6 7 11 7 5 12 11 1 13 9 0 14 8 0 15 8 4 16 10 5 17 11 7 18 15 3 19 13 1 20 12 1 21 12 5 22 14 7 23 15 2 24 17 7 25 18 6 26 19 7 27 18 2 28 17 3 29 16 0 30 21 6 31 22 4 32 23 6 33 22 0 34 21 2 35 20 10 36 26 8 37 24 11 38 27 11 39 27 8 40 24 9 41 25 15 42 31 13 43 29 12 44 28 12 45 28 14 46 30 15 47 31 12 48 34 9 49 33 8 50 32 9 51 33 12 52 34 13 53 35 13 54 38 11 55 37 9 56 36 11 57 37 13 58 38 15 59 39 15 60 42 14 61 43 11 62 40 10 63 41 11 64 40 14 65 43 14 66 46 12 67 47 10 68 44 8 69 45 10 70 44 12 71 47 19 72 51 16 73 48 18 74 50 18 75 50 16 76 48 17 77 49 22 78 54 23 79 55 20 80 52 20 81 52 21 82 53 22 83 54 20 84 57 17 85 59 16 86 56 17 87 59 20 88 57 23 89 58 23 90 61 18 91 63 17 92 60 18 93 63 23 94 61 22 95 62 22 96 65 21 97 66 18 98 64 19 99 67 18 100 64 21 101 66 21 102 69 20 103 70 19 104 68 16 105 71 19 106 68 20 107 70 26 108 74 24 109 72 27 110 75 27 111 75 24 112 72 25 113 73 31 114 79 29 115 77 28 116 76 28 117 76 30 118 78 31 119 79 28 120 82 25 121 81 24 122 80 25 123 81 28 124 82 29 125 83 29 126 86 27 127 85 25 128 84 27 129 85 29 130 86 31 131 87 31 132 90 30 133 91 27 134 88 26 135 89 27 136 88 30 137 91 30 138 94 28 139 95 26 140 92 24 141 93 26 142 92 28 143 95</p></triangles>
</mesh>
</geometry>
</library_geometries>
<library_visual_scenes>
<visual_scene id="aws_robomaker_warehouse_ShelfD_01_collision" name="aws_robomaker_warehouse_ShelfD_01_collision">
<node name="aws_robomaker_warehouse_ShelfD_01_collision" id="aws_robomaker_warehouse_ShelfD_01_collision" layer="zhenghe_collution" sid="aws_robomaker_warehouse_ShelfD_01_collision"><matrix sid="matrix">-0.000000 -0.000000 -1.000000 0.000000 -1.000000 0.000000 0.000000 -1.072197 0.000000 1.000000 -0.000000 131.071121 0.000000 0.000000 0.000000 1.000000</matrix><instance_geometry url="#aws_robomaker_warehouse_ShelfD_01_collision-lib"/><extra><technique profile="FCOLLADA"><visibility>1.000000</visibility></technique></extra></node>
<extra><technique profile="MAX3D"><frame_rate>30.000000</frame_rate></technique><technique profile="FCOLLADA"><start_time>0.000000</start_time><end_time>3.333333</end_time></technique></extra>
</visual_scene>
</library_visual_scenes>
<scene>
<instance_visual_scene url="#aws_robomaker_warehouse_ShelfD_01_collision"></instance_visual_scene>
</scene>
</COLLADA>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" ?>
<model>
<name>aws_robomaker_warehouse_ShelfD_01</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name></name>
<email></email>
</author>
<description></description>
</model>

View File

@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="aws_robomaker_warehouse_ShelfD_01">
<link name="link">
<inertial>
<mass>30</mass>
<inertia>
<ixx>907.144</ixx>
<ixy>0</ixy>
<ixz>0</ixz>
<iyy>104.950</iyy>
<iyz>0</iyz>
<izz>824.248</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ShelfD_01/meshes/aws_robomaker_warehouse_ShelfD_01_collision.DAE</uri>
<scale>1 1 1</scale>
</mesh>
</geometry>
<surface>
<friction>
<ode>
<mu>0.2</mu>
<mu2>0.2</mu2>
<fdir1>0 0 0</fdir1>
<slip1>0</slip1>
<slip2>0</slip2>
</ode>
</friction>
</surface>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://aws_robomaker_warehouse_ShelfD_01/meshes/aws_robomaker_warehouse_ShelfD_01_visual.DAE</uri>
</mesh>
</geometry>
<meta> <layer> 1 </layer></meta>
</visual>
</link>
<static>1</static>
</model>
</sdf>

Some files were not shown because too many files have changed in this diff Show More