Drag your mouse across the screen , then click your mouse to watch the circles change from rainbow to black and white
xxxxxxxxxx
/*
Katie Frank
Colors and Shapes
Art 3001
February 7, 2017
*/
void setup() {
size (500, 500);
background (0);
frameRate (8);
noFill();
}
//circles attached to mouse
void draw(){
strokeWeight(random(1,2));
stroke(255);
float size = random(10, 30);
if (mousePressed == true) {
fill (0);
} else {
fill(random(0, 255), random(0, 255), random(0, 255));
}
ellipse(mouseX, mouseY, size, size);
}