display_height
Contents
display_height¶
System variable that stores the height of the entire screen display.
Examples¶
1 2 3 | def setup():
py5.size(py5.display_width, py5.display_height)
py5.line(0, 0, py5.width, py5.height)
|
Description¶
System variable that stores the height of the entire screen display. This can be used to run a full-screen program on any display size, but calling full_screen() is usually a better choice.
Underlying Processing field: displayHeight
Updated on November 12, 2021 11:30:58am UTC