xxxxxxxxxx
51
xoff = 0;
s = 54;
function setup() {
createCanvas(720, 720);
background(248);
noFill();
rectMode(CENTER);
}
function draw() {
xoff = xoff + 0.1
n = noise(xoff) * 20
if (frameCount < 5) {
for (var x = s; x < width - s; x = x + s) {
for (var y = s; y < width - s; y = y + s) {
r = random(s);
rect(x + n, y + n, r);
}
}
}
}
function keyReleased() {
if (key == '1') {
s = 54;
background(248);
frameCount = 0;
}
if (key == '2') {
s = 100;
background(248);
frameCount = -5;
}
if (key == '3') {
s = 175;
background(248);
frameCount = -10;
}
if (key == '4') {
s = 350;
background(248);
frameCount = -25;
}
}