/* Matt Martell IAT 800 - Dr. Christopher Shaw Due Sept. 12, 2008 A1-09 */ void setup(){ size (400,400); background (24,36,212); strokeWeight(4); smooth(); int x = 1; int y = 1; while(x<10) { rect (10*(x+2),30*(x+1),100,40); x++; } while(y<10) { rect (300-(10*(y+2)),30*(y+1),100,40); y++; } }