xxxxxxxxxx
54
let width = 300;
let height = 400;
let rings = [];
function setup() {
createCanvas(width , height);
angleMode(DEGREES);
}
function draw(){
background(10,50);
if(frameCount % 45 == 0){
let c =255
let r = new Ring(width/2,height/2,10,1,c);
r.initPoints();
rings.push(r);
}
for(let i=rings.length-1; i>0; i--){
rings[i].display();
let done = rings[i].isDone();
if(done){
rings.splice(i,1);
}
}
}