xxxxxxxxxx
29
function posSin(a) {
// takes a positive maximum number a and remaps sin(a) from
// [-1, 1] to [0,1]
return map(sin(a), -1, 1, 0, 1);
}
function setup() {
createCanvas(600, 600);
rectMode(CENTER);
}
function draw() {
background(0);
noFill();
stroke("white");
strokeWeight(2);
for (let i = 0; i < 10; i++) {
for (let j = 0; j < 10; j++) {
square(
i * 60 + 30,
j * 60 + 30,
posSin(frameCount / 100) * 50
);
}
}
}