g#
The Py5Graphics object used by the Sketch.
Examples#
def setup():
py5.g.rect(10, 10, 50, 50)
py5.println(type(py5.g))
Description#
The Py5Graphics object used by the Sketch. Internally, all of Processing’s drawing functionality comes from interaction with PGraphics objects, and this will provide direct access to the PGraphics object used by the Sketch.
Use of g
is deprecated as of version 0.9.1. Please use get_graphics() instead.
Underlying Processing field: g
Updated on July 16, 2023 16:47:49pm UTC