xxxxxxxxxx
36
let count = 48;
let angles1 = [];
let circles1 = [];
let angles2 = [];
let circles2 = [];
function setup() {
createCanvas(windowWidth, windowHeight);
for (let i = 0; i < count; i++){
angles1[i] = (TWO_PI/count) * i;
circles1[i] = new Circle(angles1[i], 140);
angles2[i] = (TWO_PI/count) * i;
circles2[i] = new Circle(angles2[i], 55);
}
}
function draw() {
background(10, 50);
translate(width/2, height/2);
rotate(frameCount * 0.005);
for (let i = 0; i < count; i++) {
circles1[i].display(i);
circles1[i].move(i);
circles2[i].display(i);
circles2[i].move(i);
}
}