//Fooling Around //By David Anderson void setup() { size(400,400); // Set the size of the window smooth(); } void draw() { background(255); // Draw a white background // Set ellipses and rects to CENTER mode ellipseMode(CENTER); rectMode(CENTER); // Draw Dave's body stroke(0); fill(175); rect(mouseX,mouseY,20, 100); // Draw Dave's head stroke(0); fill(255); ellipse(mouseX,mouseY-30, 60, 60); // Draw Dave's eyes fill(0); ellipse(81,70,16,32); ellipse(119,70,16,32); // Draw Dave's Legs stroke(0); line(90,150,80,160); line(110,150,120,160); }