https://github.com/c1m50c/cellular-automata
Python project implementing Conway's Game of Life with PyGame.
https://github.com/c1m50c/cellular-automata
cellular-automata conways-game-of-life grid mit-license pygame python python3 simulation
Last synced: 7 months ago
JSON representation
Python project implementing Conway's Game of Life with PyGame.
- Host: GitHub
- URL: https://github.com/c1m50c/cellular-automata
- Owner: c1m50c
- License: mit
- Created: 2021-11-16T22:13:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-05T00:48:20.000Z (almost 4 years ago)
- Last Synced: 2025-01-19T16:45:50.235Z (9 months ago)
- Topics: cellular-automata, conways-game-of-life, grid, mit-license, pygame, python, python3, simulation
- Language: Python
- Homepage:
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **cellular-automata**
Python project implementing Conway's Game of Life with PyGame.
---
## **Requirements**
```bash
$ cd cellular-automata
$ pip3 install -r requirements.txt
```## **Running**
```bash
$ cd cellular-automata
$ python3 src/main.py
```---
## **Keybinds**
### Mouse
- **LEFT_MOUSE** - Places a cell at the mouse position
- **RIGHT_MOUSE** - Removes the cell at the mouse position
### Keyboard
- **SPACE** - Toggles the Simulation
- **ESCAPE** - Stops the Simulation
- **BACKSPACE** - Removes all cells within the Grid
- **G** - Toggles Grid Lines