This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
Name | second() |
---|---|
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 second() function returns the current second as a value from 0 - 59. |
Syntax | second() |
Returns | int |
Related | millis() minute() hour() day() month() year() |
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.