Update sketch_2020_12_29c_recursive_grid_.pyde

main
Alexandre B A Villares 2020-12-30 00:55:31 -03:00
rodzic 719ad369de
commit 3713094f94
1 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
from __future__ import division
add_library('gifAnimation')
from villares.gif_export import gif_export
# add_library('gifAnimation')
# from villares.gif_export import gif_export
def setup():
global grid
@ -19,14 +19,14 @@ def draw():
translate(width / 2, height / 2)
grid.plot()
if f <= TWO_PI:
if frameCount % 2:
gif_export(GifMaker, "output")
else:
gif_export(GifMaker)
gif_export(GifMaker)
gif_export(GifMaker)
gif_export(GifMaker, finish=True)
# if f <= TWO_PI:
# if frameCount % 2:
# gif_export(GifMaker, "output")
# else:
# gif_export(GifMaker)
# gif_export(GifMaker)
# gif_export(GifMaker)
# gif_export(GifMaker, finish=True)
class Cell():