-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme
20 lines (17 loc) · 1.15 KB
/
readme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Game of life Made in pygame.
Cellular automaton.
Plane filled with grid where a few simple rule exists.
The rules are:
1.Any live cell with fewer than two live neighbours dies, as if by underpopulation.
2.Any live cell with two or three live neighbours lives on to the next generation.
3.Any live cell with more than three live neighbours dies, as if by overpopulation.
4.Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
Complexity can arise quickly with some patterns, while other result to nothing.
Shows how complexity can arise from simple laws.
Some resources to learn more About John Conway's Game of life:
https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
https://www.youtube.com/watch?v=C2vgICfQawE&ab_channel=EmanueleAscani --> Amazing complexity shown
https://www.youtube.com/watch?v=CgOcEZinQ2I&ab_channel=0524432
https://www.youtube.com/watch?v=3NDAZ5g4EuU&ab_channel=MikhailGoncharov --> Someone made a digital clock
https://www.youtube.com/watch?v=wNY0Kp4Lw80&ab_channel=jgdaprem -->Spaceship 1
https://www.youtube.com/watch?v=v8wu2pXRq2Y&ab_channel=Godofbreadcrumbs --> Space Ship Maker