├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── launch └── .gitkeep ├── models └── .gitkeep ├── package.xml ├── scripts ├── __init__.py ├── delete.py ├── image_resize.py ├── main.py ├── model.py ├── template.py ├── templates │ ├── config_temp.txt │ ├── launch_temp.txt │ ├── sdf_temp.txt │ └── world_temp.txt └── world.py ├── src └── launch_gui.sh └── worlds └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/README.md -------------------------------------------------------------------------------- /launch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/package.xml -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/delete.py -------------------------------------------------------------------------------- /scripts/image_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/image_resize.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/model.py -------------------------------------------------------------------------------- /scripts/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/template.py -------------------------------------------------------------------------------- /scripts/templates/config_temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/templates/config_temp.txt -------------------------------------------------------------------------------- /scripts/templates/launch_temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/templates/launch_temp.txt -------------------------------------------------------------------------------- /scripts/templates/sdf_temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/templates/sdf_temp.txt -------------------------------------------------------------------------------- /scripts/templates/world_temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/templates/world_temp.txt -------------------------------------------------------------------------------- /scripts/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/scripts/world.py -------------------------------------------------------------------------------- /src/launch_gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatthewVerbryke/gazebo_terrain/HEAD/src/launch_gui.sh -------------------------------------------------------------------------------- /worlds/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------