_frameRate

Environment

Description

System variable storing the approximate current frame rate.

Syntax

_frameRate

Parameters

None

Returns

float

Related

Under the Hood

From Processing.h:

float _frameRate = 60.0f;

Under the Hood

From Processing.cpp:

_frameRate=(float)(1.0/elapsed);