diff --git a/s084/gif_exporter.py b/s084/gif_exporter.py index 6871158f..6f54c524 100644 --- a/s084/gif_exporter.py +++ b/s084/gif_exporter.py @@ -12,7 +12,7 @@ and add gif_export(GifMaker) at the end of draw() def gif_export(GifMaker, # gets a reference to the library filename="exported", # .gif will be added repeat=0, # 0 makes it an "endless" animation - quality=255, # quality range 0 - 255 + quality=32, # quality range 0 - 255 delay=170, # this is quick frames=0): # 0 will stop on keyPressed or frameCount >= 100000 global gifExporter diff --git a/s084/s084.pyde b/s084/s084.pyde index 34ce5e04..cec77581 100644 --- a/s084/s084.pyde +++ b/s084/s084.pyde @@ -41,8 +41,8 @@ def setup(): A.position(40, height - 70) B.position(40, height - 30) - C.position(width - 120, height - 70) - D.position(width - 120, height - 30) + C.position(width - 140, height - 70) + D.position(width - 140, height - 30) # noLoop() def draw(): @@ -72,11 +72,11 @@ def draw(): d = int(D.value()) # grid num # uncomment next lines to export GIF - if not frameCount % 10: - gif_export(GifMaker, - frames=2000, - delay=340, - filename=SKETCH_NAME) + # if not frameCount % 12: + # gif_export(GifMaker, + # frames=2000, + # delay=340, + # filename=SKETCH_NAME) def grid(x, y, num, size_, space, func): for i in range(x, x + num * space, space):