/** * An example of a static Processing sketch. * *

Elie Zananiri
* CART 253, Winter 2008

*/ // set the size of the display size(200, 200); // set the background color to white background(255); // draws a red circle in the center of the display fill(255, 0, 0); ellipse(100, 100, 100, 100);