xxxxxxxxxx
/* Kristina Weaver
Blinking circles animation
2/7/17
ART 3001
*/
void setup() {
size(500,500);
background(0);
frameRate(5);
noFill();
}
void draw() {
strokeWeight(random(1,30));
stroke(random(0,255),255,255);
float size = random(100,100);
ellipse(width/2, height/2,size, size);
strokeWeight(random(1,50));
stroke(random(0,255),150, 200);
ellipse(width/4, height/4,size, size);
}