Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/russkyc/blazor-game-of-life
An experimental implementation of Conway's Game of Life using Blazor Webassembly
https://github.com/russkyc/blazor-game-of-life
blazor blazor-webassembly conways-game-of-life experiment game-of-life
Last synced: about 2 months ago
JSON representation
An experimental implementation of Conway's Game of Life using Blazor Webassembly
- Host: GitHub
- URL: https://github.com/russkyc/blazor-game-of-life
- Owner: russkyc
- License: mit
- Created: 2024-03-10T13:04:36.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-03-10T13:38:57.000Z (10 months ago)
- Last Synced: 2024-03-10T14:25:46.403Z (10 months ago)
- Topics: blazor, blazor-webassembly, conways-game-of-life, experiment, game-of-life
- Language: HTML
- Homepage: https://russkyc.github.io/blazor-game-of-life/
- Size: 8.05 MB
- Stars: 1
- 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 (Experiment)
Conway's Game of Life is a cellular automaton that simulates the evolution of living organisms based on simple rules. It's a fascinating and addictive way to explore emergent behavior and complexity in a simple system.
This project is an experimental implementation of the Game of Life to life in the web browser using Blazor WebAssembly.
### Rules that Make The Game of Life Possible
The Game of Life follows these simple rules:
1. Any live cell with fewer than two live neighbours dies, as if by underpopulation.
2. Any live cell with two or three live neighbours lives on to the next generation.
3. Any live cell with more than three live neighbours dies, as if by overpopulation.
4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.