0.11.0 • Published 3 years ago

@ludw1gj/game-of-life-fn v0.11.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Conway's Game of Life

A TypeScript implementation of Conway's Game of Life. It includes functions to handle drawing the grid on a HTMLCanvasElement.

Game rules are as follows:

  • Any live cell with fewer than two live neighbours dies, as if 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.
0.11.0

3 years ago

0.10.0

3 years ago

0.9.1

3 years ago

0.9.0

3 years ago

0.8.0

3 years ago

0.7.0

3 years ago

0.6.0

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago