This project was based on Conway's Game of Life
This project was done for a java class that we took. We were tasked to make application making use of available graphics and to make it look nice. We decided to base our project off of a previously done project called Conway's Game of Life. This "game" is more of a simulation to roughly simulate life.
The rules for the game are fairly simple and are as follows. These are the rules shown on the wikipedia page for Conway's Game of Life
- Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.