Skip to content

Instantly share code, notes, and snippets.

@ohmygodwin
Created September 30, 2013 17:20
Show Gist options
  • Save ohmygodwin/6767080 to your computer and use it in GitHub Desktop.
Save ohmygodwin/6767080 to your computer and use it in GitHub Desktop.
a static-y animation made in processing
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