-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fausto Mauricio
committed
Sep 1, 2021
1 parent
b198e0a
commit e94fd20
Showing
1 changed file
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
# game_of_life | ||
A interactive version of the Conway's Game of Life | ||
# Game of life | ||
|
||
This implementation of [John Conway's game of life][1] developed with processing language | ||
with python-mode use a random seed and mouse interaction to set seed. At any | ||
instant, the user can pause the simulation to change the state of any cell. | ||
Can too interact in the execution time. | ||
|
||
|
||
## How to execute the simulation | ||
|
||
To run the simulation is needed an installation of [Processing 3.5.4 IDE][2] and | ||
add the python-mode from the top-right menu. Once you have the Processing IDE | ||
go to the File menu, select the Open option and search for the game_of_life_sketch.pyde | ||
file. In the IDE use the run button (top-left corner) to execute the simulation. | ||
|
||
If you need to compile this such an application from any operating system | ||
(GNU Linux, Mac OS or Windows), go to the File menu and search for the | ||
Export Application option. | ||
|
||
[1]: https://en.wikipedia.org/wiki/Conway's_Game_of_Life | ||
[2]: https://processing.org/download |