noLoop()
StructureDescription
Stops Processing from continuously executing the code within draw(). draw() is called once and then stops.
Syntax
void noLoop()
Parameters
None
Returns
voidRelated
Under the Hood
From Processing.h:
void noLoop();
Under the Hood
From Processing.cpp:
void PApplet::noLoop(){looping=false;}