In [1]:
println("Doug");
Sketch #1:

Sketch #1 state: Loading...
In [11]:
size(500, 300);
fill(color(150, 5, 150));
triangle(250, 100, 100, 200, 400, 200);
rect(150, 200, 200, 50);
fill(color(255, 5, 0));
ellipse(50, 50, 50, 60);
Sketch #11:

Sketch #11 state: Loading...
In [17]:
void setup() {
    size(500, 300);
    fill(color(150, 5, 150));
    triangle(250, 100, 
             100, 200, 
             400, 200);
    rect(150, 200, 200, 50);
    fill(color(255, 5, 0));
    ellipse(50, 50, 50, 60);
}

void drawCat(int x, int y) {
    ellipse(x + 0, y + 0, 20, 20);
    rect(x + -10, y + 10, 20, 40);
}

void mousePressed() {
    drawCat(mouseX, mouseY);
}
Sketch #17:

Sketch #17 state: Loading...