https://github.com/seanpray/rust-game-of-life
quick and dirty clone of conway's game of life
https://github.com/seanpray/rust-game-of-life
Last synced: about 1 month ago
JSON representation
quick and dirty clone of conway's game of life
- Host: GitHub
- URL: https://github.com/seanpray/rust-game-of-life
- Owner: seanpray
- License: gpl-3.0
- Created: 2022-07-03T15:52:08.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-03T15:56:27.000Z (almost 3 years ago)
- Last Synced: 2025-03-29T02:52:20.489Z (about 2 months ago)
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Conway's Game of Life in Rust. The edge cells have a reduced amount of checks, this could be further optimized to improve speed.
The way the program is laid out allows it to easily be made parallel with the likes of Rayon. At the moment it uses zero dependencies.
This is not implemented with edge wrapping, as there is no official rule to how the borders of the grid should be implemented. It is made to easily be able to use a GUI framework such as nannou with it as well.