noClip()

Rendering

Description

Disables the clipping region set with clip().

Syntax

void noClip()

Parameters

None

Returns

void

Related

Under the Hood

From Processing.h:

void noClip();

Under the Hood

From Processing.cpp:

void PApplet::noClip() { glDisable(GL_SCISSOR_TEST); }