xxxxxxxxxx
19
function setup() {
createCanvas(windowWidth, windowHeight);
background(220, 20, 120);
noLoop();
noStroke();
}
function draw() {
for (let y = 0; y < height; y++) {
for (let x = 0; x < width; x++) {
let r = 255 * noise(x / 100, y / 100);
let g = 215;
let b = 255 - r;
fill(r, g, b);
rect(x, y, 1, 1);
}
}
}