a port of the Processing Visualization Language
Name

millis()

Examples
void draw() {

  float m = millis();

  fill(m % 255);

  rect(25, 25, 50, 50);

}
Description Returns the number of milliseconds (thousandths of a second) since starting an applet. This information is often used for timing animation sequences.
Syntax
millis()
Parameters
Usage Web & Application
Related second()
minute()
hour()
day()
month()
year()

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub