/* Matt Martell IAT 800 - Dr. Christopher Shaw Due Sept. 12, 2008 A1-08 */ void draw(){ int x=1; int y=1; while (x<4){ //line 1,3,5 blue vert stroke(23,11,111); strokeWeight(4); line(x+8+30*(x-1),10,x+8+30*(x-1),30); x++; } while (y<4){ //line 2,4,6 stroke(111,211,111); strokeWeight(6); line(y+13+30*(y-1),20,y+33+30*(y-1),20); y++; }}