Report as inappropriate.
Conway's Life in Greenfoot
A 2 dimensional cellular automaton. Each cell is "dead" or "alive".
The next step of the simulation is determined by these rules (via Wikipedia):
1. Any live cell with fewer than two live neighbours dies, as if by needs caused by underpopulation.
2. Any live cell with more than three live neighbours dies, as if by overcrowding.
3. Any live cell with two or three live neighbours lives, unchanged, to the next generation.
4. Any dead cell with exactly three live neighbours becomes a live cell.
The space is modeled as a toroid (donut), so the cells are on a finite but boundless surface. The top connects to the bottom, and the left connects to the right.
GUI buttons control the Simulation.
Start runs the simulation
Stop pauses the simulation
Rand populates the simulation with random cells
Blank pauses and clears the simulation, so you can draw your own configuration.
Use the left-click of the mouse to draw cells.
TO DO:
Check for simple (period of 2) steady state and pause simulation until perturbed?
6059 views / 15 in the last 7 days
4 votes | 0 in the last 7 days
Visit the web page for this scenario.
Want to leave a comment? You must first log in.
2009/4/11
2009/4/11
2009/4/11
2009/4/11