2015-06-02 21:30:22 +00:00
|
|
|
"""
|
|
|
|
B2/S: Seeds
|
|
|
|
|
|
|
|
@author: jrpotter
|
|
|
|
@date: June 02, 2015
|
|
|
|
"""
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
import os, sys
|
|
|
|
sys.path.append(os.path.abspath('src'))
|
|
|
|
|
|
|
|
import cam
|
2015-06-06 23:07:52 +00:00
|
|
|
import cam_parser
|
2015-06-02 21:30:22 +00:00
|
|
|
|
|
|
|
c = cam.CAM(1, 100, 2)
|
2015-06-06 23:07:52 +00:00
|
|
|
p = cam_parser.CAMParser('B2/S', c)
|
2015-06-02 21:30:22 +00:00
|
|
|
|
2015-06-04 18:16:25 +00:00
|
|
|
c.randomize()
|
|
|
|
c.start_plot(100, p.ruleset)
|