xxxxxxxxxx
22
const seeds = [300,200,1,123456];
function setup() {
createCanvas(400, 400);
noLoop();
}
function draw() {
background(220);
let count = 0;
for (let seed of seeds) {
console.log(seed);
randomSeed(seed);
let randomVal = random(0, 255);
text( `Count:${count} Seed:${seed} RandomVal:${randomVal}`, 20, count*40 + 20);
count++;
}
}