xxxxxxxxxx
38
let rectWidth = 30;
let rectHeight = 30;
let yLoc0, yLoc1;
function setup() {
createCanvas(600, 600);
yLoc0 = height * 0.1;
yLoc1 = height * 0.75;
rectMode(CENTER);
}
function draw() {
noStroke();
fill(110, 240, 239)
background(200);
for (let i = rectWidth / 2; i < width; i += rectWidth) {
let noiseValue = noise(frameCount * 0.02, i * 0.02);
let scaledNoise = (noiseValue - 0.5) * 100;
rect(i, height * 0.65 + scaledNoise, rectWidth, rectHeight);
}
for (let i = rectWidth / 2; i < width; i += rectWidth) {
let noiseValue = noise(frameCount * 0.05, i * 0.05);
let angle = noiseValue * TWO_PI;
push();
translate(i, height * 0.55);
rotate(angle);
rect(0, 0, rectWidth, rectHeight);
pop();
}
}