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.

Underlying Processing field: g

Updated on March 06, 2023 02:49:26am UTC