display_width#
System variable that stores the width of the entire screen display.
Examples#
def setup():
py5.size(py5.display_width, py5.display_height)
py5.line(0, 0, py5.width, py5.height)
Description#
System variable that stores the width 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: displayWidth
Updated on March 06, 2023 02:49:26am UTC