Last active
October 1, 2016 14:37
-
-
Save javierarce/9bef31855bc604ea2d44ffd5a66b3c13 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gifAnimation.*; | |
GifMaker gifExport; | |
float angle = 0.1; | |
void setup() { | |
size(500, 500); | |
smooth(); | |
noStroke(); | |
background(0); | |
frameRate(12); | |
gifExport = new GifMaker(this, "spin rect sine growth.gif"); | |
gifExport.setRepeat(0); // make it an "endless" animation | |
gifExport.setTransparent(255); // make white the transparent color -- match browser bg color | |
gifExport.setDelay(1000/12); //12fps in ms | |
} | |
void draw() { | |
float size = map(sin(angle), -1, 1, 0, height); | |
rectMode(CENTER); | |
translate(width/2, height/2); | |
rotate(angle); | |
noStroke(); | |
fill(255, 255); | |
rect(0, 0, size, size); | |
angle += 0.0523 ; | |
noStroke(); | |
fill( 0, 15); | |
rect(0, 0, width, height); | |
gifExport.addFrame(); | |
if (frameCount == 120) { | |
gifExport.finish(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment