This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
Name | height |
---|---|
Examples | noStroke(); background(0); rect(40, 0, 20, height); rect(60, 0, 20, height/2); |
Description | System variable that stores the height of the display window. This value is set by the second parameter of the size() function. For example, the function call size(320, 240) sets the height variable to the value 240. The value of height defaults to 100 if size() is not used in a program. |
Related | width size() |
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.