xxxxxxxxxx
/* Colored Box Drawing
Kristina Weaver
ART 3001
1/31/17
Press the mouse to change the color
of the boxes
*/
void setup()
{
background(0);
size(500,500);
}
void draw(){
if (mousePressed) {
fill(0,255,0); //green
} else {
fill(255); } //default color (white)
rect(250,250,50,50);
if (mousePressed){
fill (255,0,0); //red
} else {
fill(255); } //default color (white)
rect(150,150,50,50);
}