Reference for Processing version 1.2. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Javadoc.

Name

width

Examples
example pic
noStroke();
background(0);
rect(0, 40, width, 20);
rect(0, 60, width/2, 20);
Description System variable which stores the width of the display window. This value is set by the first parameter of the size() function. For example, the function call size(320, 240) sets the width variable to the value 320. The value of width is zero until size() is called.
Usage Web & Application
Related height
Updated on June 14, 2010 12:05:29pm EDT

Creative Commons License