Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skallski/game_of_life
Conway's Game_of_Life Java implementation
https://github.com/skallski/game_of_life
cellular-automata game-of-life javafx
Last synced: about 2 months ago
JSON representation
Conway's Game_of_Life Java implementation
- Host: GitHub
- URL: https://github.com/skallski/game_of_life
- Owner: Skallski
- Created: 2020-05-23T16:09:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-25T18:43:15.000Z (over 4 years ago)
- Last Synced: 2024-08-08T15:47:49.943Z (5 months ago)
- Topics: cellular-automata, game-of-life, javafx
- Language: Java
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game_of_life
Conway's Game_of_Life Java implementation# 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.
```# Screenshots: