noClip()
RenderingDescription
Disables the clipping region set with clip().
Syntax
void noClip()
Parameters
None
Returns
voidRelated
Under the Hood
From Processing.h:
void noClip();
Under the Hood
From Processing.cpp:
void PApplet::noClip() {
glDisable(GL_SCISSOR_TEST);
}