FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Abridged (A-Z) \ Complete (A-Z)  
   
  Reference for Processing (BETA) version 91+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.  
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()
   
Returns   int
   
Usage   Web & Application
   
Related   millis()
second()
minute()
hour()
day()
month()
year()
 
 






   
 
Updated: Fri Jul 15 16:35:46 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info