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

21 lines
343 B
Python
Raw Normal View History

2015-06-02 21:30:22 +00:00
"""
B1357/S1357: Replicator
@author: jrpotter
@date: June 02, 2015
"""
if __name__ == '__main__':
import os, sys
sys.path.append(os.path.abspath('src'))
import cam
import util as u
2015-06-02 21:30:22 +00:00
import ruleset as rs
c = cam.CAM(1, 100, 2)
p = u.CAMParser('B1357/S1357', c)
2015-06-02 21:30:22 +00:00
c.randomize()
c.start_plot(100, p.ruleset)