xxxxxxxxxx
28
x = 500;
y = 500;
let xoff = 0;
function setup() {
createCanvas(700*10, 700*10);
//background(250);
noStroke();
fill(63, 56, 60);
rectMode(RADIUS);
}
function draw() {
xoff = xoff + 0.1;
let n = noise(xoff) * 15;
x = x + (n * 3)*10;
rect(x, y, n*10, n*10);
if (x > width-500) {
x = n * 3;
y = y + (n * 3)*10;
if (y > height-500) {
noLoop()
}
}
}