a port of the Processing Visualization Language
Name

noiseSeed()

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
noiseSeed(value);
Parameters
value int
Returns float
Usage Web & Application
Related noise()
noiseDetail()
noiseSeed()
random()

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

Creative Commons License
Fork me on GitHub