To try out the game for yourself, please clone the main branch. Once copied the game can be run from the root folder by running dotnet run --project Conways.Game.Of ...
This code generates a 2D animation of a 1D cellular automaton, Rule 30 (or other rules), being fed as input to a 2D cellular automaton, Conway’s Game of Life. Video ...
Conway’s Game of Life is a beautiful example of how complex behavior can emerge from a few very simple rules. But while it uses biological terminology such as “cells”, “alive” and ...
The rules are quite simple, but it's actually surprisingly ... class Grid: """This defines the playing surface for Conway's Game of Life.""" def __init__(self, size): """Create the grid as a 2D list ...