a port of the Processing Visualization Language
Name

minute()

Examples
void draw() {

  background(204);

  int s = second();  // Values from 0 - 59

  int m = minute();  // Values from 0 - 59

  int h = hour();    // Values from 0 - 23

  line(s, 0, s, 33);

  line(m, 33, m, 66);

  line(h, 66, h, 100);

}
Description Processing communicates with the clock on your computer. The minute() function returns the current minute as a value from 0 - 59.
Syntax
minute()
Parameters
Usage Web & Application
Related millis()
second()
hour()
day()
month()
year()

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

Creative Commons License
Fork me on GitHub