Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

second()

   
Examples  
void loop() { 
  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
   
Usage   Web & Application
   
Related   millis()
second()
minute()
hour()
day()
month()
year()
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas