Update sketch_2020_02_06a.pyde

main
Alexandre B A Villares 2020-02-07 10:05:12 -02:00
rodzic 72c2c30fe4
commit 998dfbd2b3
1 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
# Alexandre B A Villares - https://abav.lugaralgum.com/sketch-a-day
SKETCH_NAME = "s06a" # 20181122
SKETCH_NAME = "s06a"
OUTPUT = ".pdf"
GRID_SIZE = 14
MARGIN = .1
@ -33,9 +33,8 @@ def draw():
hires.background(240)
hires.strokeWeight(.33)
hires.scale(scaleFactor)
for t in range(5):
for c in Cell.cells:
c.plot() # c.plot(t / 4.)
for c in Cell.cells:
c.plot()
hires.dispose()
endRecord()