This browser does not have a Java Plug-in.
Get the latest Java Plug-in here.

Original Conway's Game of Life by Mike Davis I changed the resolution & hacked in some color code
This program is a simple version of Conway's game of Life. A lit point turns off if there are fewer than two or more than three surrounding lit points. An unlit point turns on if there are exactly three lit neighbors. The 'density' parameter determines how much of the board will start out lit.
When new cells are spawned, their color is determined in part by that of their 'parents'.

Source code: ConwaysGameOfLifeInColor

Built with Processing