trafsim
2D Traffic Simulator
File Explorer
- c_cpp_properties.json
- launch.json
- tasks.json
- CMakeLists.txt
- CMakeLists.txt
- CMakeLists.txt
- blue_car.png
- brown_car.png
- green_car.png
- grey_car.png
- red_car.png
- teal_car.png
- white_car.png
- home_building.png
- home_road.png
- left_intersection.png
- left_junction.png
- left_trisection.png
- left_turn.png
- map1.csv
- office_building.png
- right_intersection.png
- right_junction.png
- right_trisection.png
- right_turn.png
- straight_road.png
- texture_list.txt
- worldmap.png
- Application.cpp
- Application.hpp
- main.cpp
- Window.cpp
- Window.hpp
- BuildingHandler.cpp
- BuildingHandler.hpp
- BuildingTile.cpp
- BuildingTile.hpp
- Car.cpp
- Car.hpp
- Grid.cpp
- Grid.hpp
- HomeBuilding.cpp
- HomeBuilding.hpp
- HomeRoad.cpp
- HomeRoad.hpp
- IntersectionTemplates.cpp
- IntersectionTemplates.hpp
- Map.cpp
- Map.hpp
- MapBuilder.cpp
- MapBuilder.hpp
- Node.cpp
- Node.hpp
- OfficeBuilding.cpp
- OfficeBuilding.hpp
- Rando.cpp
- Rando.hpp
- RoadIntersection.cpp
- RoadIntersection.hpp
- RoadJunction.cpp
- RoadJunction.hpp
- RoadTile.cpp
- RoadTile.hpp
- RoadTrisection.cpp
- RoadTrisection.hpp
- RoadTurn.cpp
- RoadTurn.hpp
- Statistics.cpp
- Statistics.hpp
- StraightRoad.cpp
- StraightRoad.hpp
- Tile.cpp
- Tile.hpp
- TimeLine.cpp
- TimeLine.hpp
- TrafficLight.cpp
- TrafficLight.hpp
- TrafficLightNetwork.cpp
- TrafficLightNetwork.hpp
- CsvRow.cpp
- CsvRow.hpp
- DataHandler.cpp
- DataHandler.hpp
- VectorMath.cpp
- VectorMath.hpp
- .gitignore
- CMakeLists.txt
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
