/* Matt Martell IAT 800 - Dr. Christopher Shaw Due Oct. 6, 2008 A2-04 - Write a function with one parameter and demonstrate it visually. */ void setup() { background (3444); size(300,300); smooth(); stroke(230,230,250); frameRate(4); } int x = int (random(0,300)); void draw() { fill(224,255,255,25); rect(random (x),random (x),15,15); drawBox (x); } void drawBox (int x) { }