pub static randomSeed: RandomSeedInternalTypeExpand 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.
Examples
randomSeed(99);
for (let i = 0; i < 100; i++) {
let r = random(0, 255);
stroke(r);
line(i, 0, i, 100);
}Parameters
seed the seed value