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 Mon Sep 21 15:53:25 2020.

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