display_width#
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#
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 December 07, 2024 22:07:08pm UTC