r
/
fifth
1
Fork 0
fifth/examples/life.py

21 lines
335 B
Python
Raw Normal View History

2015-06-01 12:45:23 +00:00
"""
B3/S23: Game of Life
2015-06-01 12:45:23 +00:00
@author: jrpotter
@date: June 01, 2015
"""
2015-06-01 00:58:09 +00:00
if __name__ == '__main__':
2015-06-01 12:45:23 +00:00
import os, sys
sys.path.append(os.path.abspath('src'))
import cam
import util as u
2015-06-01 12:45:23 +00:00
import ruleset as rs
c = cam.CAM(1, 100, 2)
p = u.CAMParser('B3/S23', c)
c.randomize()
2015-06-05 12:57:14 +00:00
c.start_plot(400, p.ruleset)