Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dandlezzz/conway-s-game-of-life
https://github.com/dandlezzz/conway-s-game-of-life
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dandlezzz/conway-s-game-of-life
- Owner: dandlezzz
- Created: 2014-03-01T01:04:01.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-09T04:26:04.000Z (over 10 years ago)
- Last Synced: 2024-11-08T19:52:43.321Z (2 months ago)
- Language: JavaScript
- Size: 297 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Conway-s-Game-of-Life
=====================
This is a javascript/jquery implementation of Conway's Game of Life, complete with a testing suite that uses Mocha and chai.It looks great on a big screen. You can place popular conway patterns by clicking on the icons to the left of the grid, before or during runtime.
For reference, here is the basic Conway alogrithm...
Any live cell with fewer than two live neighbours dies, as if caused by under-population.
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 overcrowding.
Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.For further information regarding conways game of life check out wikipedia
http://en.wikipedia.org/wiki/Conway's_Game_of_Life