xxxxxxxxxx
32
let zOff = 0;
let cellsize = 10;
function setup() {
createCanvas(800, 800);
noiseDetail(8, 0.75);
background(220);
frameRate(20);
}
function draw() {
noStroke();
for (let y = 0; y < height; y+=cellsize) {
for (let x = 0; x < width; x+=cellsize) {
let _color;
let n = noise(x*0.0001, y*0.0001, zOff*0.00001);
if (n < 0.25) _color = color("#f6f6f4");
else if (n < 0.5) _color =
color("#ff5937");
else if (n < 0.75) _color = color("#4169ff");
else _color = color(0,0,255);
fill(_color);
rect(x, y, cellsize, cellsize);
// set(x, y, _color);
}
}
zOff++;
// updatePixels();
}