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  

randomSeed()

   
Examples  
randomSeed(0); 
for(int i=0; i<100; i++) { 
  float r = random(0, 255); 
  stroke(r); 
  line(i, 0, i, 100); 
} 
 

Description   Sets the seed value for random(). By default, random() produces different results each time the program is run. Set the value parameter to a constant to return the same pseudo-random numbers each time the software is run.
   
Syntax  
random(value);
   
Parameters  
value   int

   
Returns   None
   
Usage   Web & Application
   
Related   random()
noise()
noiseSeed()
 
 






   
 
Updated: Fri Jul 15 16:36:03 PDT 2005
 
 








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