xxxxxxxxxx
31
let noiseFactor = 50;
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 nLevel = noise(x / noiseFactor, y / 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, 1, 1);
}
}
}