xxxxxxxxxx
38
let noiseFactor = 100;
function setup() {
createCanvas(windowWidth, windowHeight);
background(220, 20, 120);
noStroke();
}
function draw() {
let pixelGroup = frameCount % 4;
let xStart = pixelGroup / 2;
let yStart = pixelGroup % 2;
for (let y = yStart; y < height; y += 2) {
for (let x = xStart; x < width; x += 2) {
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, 1, 1);
}
}
}