xxxxxxxxxx
36
let noiseFactor = 200;
let gridWidth = 4;
function setup() {
createCanvas(windowWidth, windowHeight);
noStroke();
}
function draw() {
background(220, 20, 120);
for (let y = 0; y < height; y += gridWidth) {
for (let x = 0; x < width; x += gridWidth) {
let nLevel = noise(
x / noiseFactor,
y / noiseFactor,
frameCount / noiseFactor
);
if (nLevel < 0.35) {
fill(0, 100, 255);
} else if (nLevel < 0.5) {
fill(0, 215, 255);
} else if (nLevel < 0.55) {
fill(250, 215, 180);
} else if (nLevel < 0.65) {
fill(50, 45, 8);
} else {
fill(0, 100, 0);
}
rect(x, y, gridWidth);
}
}
}