Name

noClip()

Examples
def setup():
    size(200, 200)
    noFill()
    imageMode(CENTER)

def draw():
    background(204)
    if mousePressed:
        clip(mouseX, mouseY, 50, 50)
    else:
        noClip()
    line(0, 0, width, height)
    line(0, height, width, 0)
Description Disables the clipping previously started by the clip() function.
Syntax
    noClip()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.