/* Matt Martell IAT 800 - Dr. Christopher Shaw Due Sept. 12, 2008 A1-14 */ void setup() { size(500,500); smooth(); } void draw() { background(212,212,111); if(mousePressed) { rect(mouseY,mouseX,100,100); fill(212,22,123); } else { ellipse(mouseX,mouseY,100,100); fill(36,23,212); } }