Name | randomSeed() |
||
---|---|---|---|
Examples |
randomSeed(0) for i in range(100): 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 seed parameter to a constant to return the same pseudo-random numbers each time the software is run. | ||
Syntax | randomSeed(seed) | ||
Parameters |
| ||
Related |
random() noise() noiseSeed() |
Updated on Mon Sep 21 15:53:25 2020.
If you see any errors or have comments, please let us know.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License