├── .gitattributes ├── .gitignore ├── grid.py ├── readme.md ├── road_intersection ├── materials │ ├── scripts │ │ └── road_intersection.material │ └── textures │ │ └── road_intersection.png ├── model.config └── model.sdf ├── road_straight ├── materials │ ├── scripts │ │ └── road_straight.material │ └── textures │ │ └── road_straight.png ├── model.config └── model.sdf ├── wizard.py └── world_gen.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.world 3 | -------------------------------------------------------------------------------- /grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/grid.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/readme.md -------------------------------------------------------------------------------- /road_intersection/materials/scripts/road_intersection.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_intersection/materials/scripts/road_intersection.material -------------------------------------------------------------------------------- /road_intersection/materials/textures/road_intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_intersection/materials/textures/road_intersection.png -------------------------------------------------------------------------------- /road_intersection/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_intersection/model.config -------------------------------------------------------------------------------- /road_intersection/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_intersection/model.sdf -------------------------------------------------------------------------------- /road_straight/materials/scripts/road_straight.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_straight/materials/scripts/road_straight.material -------------------------------------------------------------------------------- /road_straight/materials/textures/road_straight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_straight/materials/textures/road_straight.png -------------------------------------------------------------------------------- /road_straight/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_straight/model.config -------------------------------------------------------------------------------- /road_straight/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/road_straight/model.sdf -------------------------------------------------------------------------------- /wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/wizard.py -------------------------------------------------------------------------------- /world_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarath18/roadmap_generator/HEAD/world_gen.py --------------------------------------------------------------------------------