xxxxxxxxxx
29
function setup() {
createCanvas(600, 600);
}
function draw() {
background(0);
stroke("white");
strokeWeight(2);
translate(0, -60);
for (let i = 0; i < 10; i++) {
push();
for (let j = 0; j < 10; j++) {
translate(0, 60);
push();
translate(30, 30);
rotate((frameCount + i * j) / 100);
// 20 seems like a roughly good length to not overlap cells
line(-20, -20, 20, 20);
pop();
}
pop();
translate(60, 0);
}
}