> show canvas only <


/* built with Studio Sketchpad: 
 *   http://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   http://sketchpad.cc/sp/pad/view/ro.zxoI9YPanKN/rev.1079
 * 
 * authors: 
 *   Ari
 *   
 *   Ari
 *   Ari
 *   Ari
 *   Ari
 *   Ari
 *   Ari

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   http://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



/*****************************************************************\
*
* Lists of sketches are now paginated. (can add "begin" and "show" params to query strings of list pages.)
* 
* Fixed iframe/embed bug. If you visited a non-sketchpad.cc domain using Safari that had multiple private studio sketches embedded in it, all canvases now load properly.
* 
* Added support for "recreate" action. Details at: http://blog.sketchpad.cc/2011/03/recreate/
* 
* Upgraded to Processing.js 1.1 (on 3/8/2011). Nice work, team! 
* 
* In addition to images, txt, csv, js, and pde files can be uploaded to be accessed locally.
*
* Full-screen editing restored!
*
* Editor options moved from menu to footer. 
*
* The page header on the editor is squished (vertically) to save space. Moving the mouse over the header expands it to full size.
*
* Click anywhere on a canvas to begin rendering it (no longer just on the play button)
*
* When looking at a list of sketches in a studio, the canvas preview modals can now be closed by clicking anywhere outside of the modal.
* 
* When reviewing a sketch, the each rendered "P" has a label associated with it. These can be renamed through the "Rollbacks" link in the editor.
* 
* Assorted improvements to the usability of the studio login/signup pages, including better integration with the open studio and the public site.
*
* When a viewer visits a studio URL, the page header includes links to view the gallery and recent sketch list for that studio (unless the studio owner limits this access.)
*
* When a viewer replays a sketch, hitting the spacebar no longer auto-plays the sketch history. (This was causing problems for certain sketches that worked with keyboard input.)
*
* When a viewer watches a sketch as it is edited, the canvas at the top of the screen is rendered each time one of the sketch authors renders it. See http://blog.sketchpad.cc/2011/01/disco/ for an example of what play-back offers.
*
* Added release notes. 
*
\*****************************************************************/














// Examples written by Casey Reas and Ben Fry, unless otherwise stated. 
// http://processingjs.org/learning/basic/words 

size(200, 200);
background(102);

// Load the font. Fonts are located within the 
// main Processing directory/folder and they
// must be placed within the data directory
// of your sketch for them to load
PFont fontA = loadFont("Arial");

// Set the font and its size (in units of pixels)
textFont(fontA, 32);

int x = 30;

// Use fill() to change the value or color of the text
fill(0);
text("release", x, 60);
fill(51);
text("notes", x, 95);
fill(204);
text("change", x, 130);
fill(255);
text("log", x, 165);