Created
September 30, 2013 17:20
-
-
Save ohmygodwin/6767080 to your computer and use it in GitHub Desktop.
a static-y animation made in processing
This file contains hidden or 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
float bbycircle; | |
float bbycircle2; | |
float radius; | |
float gray; | |
void setup() { | |
size(662, 300); | |
} | |
void draw() { | |
background(40); | |
noStroke(); | |
fill(gray); | |
ellipse(bbycircle,bbycircle2,radius,radius); | |
gray = random(40,255); | |
bbycircle = random(width); | |
bbycircle2 = random(height); | |
radius = random(5); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment