loop()

Structure

Description

Causes Processing to continuously execute the code within draw().

Syntax

void loop()

Parameters

None

Returns

void

Related

Under the Hood

From Processing.h:

void loop();

Under the Hood

From Processing.cpp:

void PApplet::loop() {looping=true;}