Difference between revisions of "FSOSS 2010/processing.js/example1"
Line 15: | Line 15: | ||
// Draw a rectangle (x, y, width, height) | // Draw a rectangle (x, y, width, height) | ||
+ | // [[http://www.processing.org/reference/rect_.html]] | ||
rect(5, 20, 70, 50); | rect(5, 20, 70, 50); | ||
</source> | </source> | ||
[http://studio.sketchpad.cc/zj4P0Pcuj2 Run me] | [http://studio.sketchpad.cc/zj4P0Pcuj2 Run me] |
Revision as of 13:15, 5 October 2010
/*
FSOSS 2010
Example 1
*/
// Set the size of the canvas. This will overwrite the canvas
// HTML attributes. This should be the first line in your sketch
size(100, 100);
// Set the background color to gray
background(200);
// Draw a rectangle (x, y, width, height)
// [[http://www.processing.org/reference/rect_.html]]
rect(5, 20, 70, 50);