├── .gitignore ├── Demo.gif ├── LICENSE ├── README.md ├── images ├── down │ ├── bike.png │ ├── bus.png │ ├── car.png │ └── truck.png ├── intersection.png ├── left │ ├── bike.png │ ├── bus.png │ ├── car.png │ └── truck.png ├── right │ ├── bike.png │ ├── bus.png │ ├── car.png │ └── truck.png ├── signals │ ├── green.png │ ├── red.png │ └── yellow.png └── up │ ├── bike.png │ ├── bus.png │ ├── car.png │ └── truck.png ├── simulation-output.png └── simulation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/Demo.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/README.md -------------------------------------------------------------------------------- /images/down/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/down/bike.png -------------------------------------------------------------------------------- /images/down/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/down/bus.png -------------------------------------------------------------------------------- /images/down/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/down/car.png -------------------------------------------------------------------------------- /images/down/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/down/truck.png -------------------------------------------------------------------------------- /images/intersection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/intersection.png -------------------------------------------------------------------------------- /images/left/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/left/bike.png -------------------------------------------------------------------------------- /images/left/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/left/bus.png -------------------------------------------------------------------------------- /images/left/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/left/car.png -------------------------------------------------------------------------------- /images/left/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/left/truck.png -------------------------------------------------------------------------------- /images/right/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/right/bike.png -------------------------------------------------------------------------------- /images/right/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/right/bus.png -------------------------------------------------------------------------------- /images/right/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/right/car.png -------------------------------------------------------------------------------- /images/right/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/right/truck.png -------------------------------------------------------------------------------- /images/signals/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/signals/green.png -------------------------------------------------------------------------------- /images/signals/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/signals/red.png -------------------------------------------------------------------------------- /images/signals/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/signals/yellow.png -------------------------------------------------------------------------------- /images/up/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/up/bike.png -------------------------------------------------------------------------------- /images/up/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/up/bus.png -------------------------------------------------------------------------------- /images/up/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/up/car.png -------------------------------------------------------------------------------- /images/up/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/images/up/truck.png -------------------------------------------------------------------------------- /simulation-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/simulation-output.png -------------------------------------------------------------------------------- /simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mihir-m-gandhi/Basic-Traffic-Intersection-Simulation/HEAD/simulation.py --------------------------------------------------------------------------------