xxxxxxxxxx
30
let C = [];
let check;
function setup() {
createCanvas(550, 450);
}
function draw() {
background(0);
if (C.length > 1000) {
console.log("END");
noLoop();
}
nCircle();
for (let i = 0; i < C.length; i++) {
C[i].show();
C[i].grow();
abc: for (let j = 0; j < C.length; j++) {
if (C[i].intersect(C[j]) && i != j) {
C[i].stop();
C[j].stop();
break abc;
}
}
}
}