Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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: