no_fill()
Contents
no_fill()#
Disables filling geometry.
Examples#

def setup():
py5.rect(15, 10, 55, 55)
py5.no_fill()
py5.rect(30, 20, 55, 55)
Description#
Disables filling geometry. If both no_stroke() and no_fill()
are called, nothing will be drawn to the screen.
Underlying Processing method: noFill
Signatures#
no_fill() -> None
Updated on September 01, 2022 16:36:02pm UTC