Skip to content

yaitaimo/LifeGame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

LifeGame

This program is a LifeGame in Processing. The Rules are following.

Rule

num # Adjacent live cells
cell # The cell is live or death
next # The cell will be in next 
if num == 3 and cell == "death":
    next = "birth"
elif ( num < 2 or 3 < num ) and cell == "live":
    next = "death"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published