xxxxxxxxxx
50
let width = 700;
let height = 700;
let rry = [];
let arcs,arcs_;
function setup() {
createCanvas(width , height);
let count = width * 0.45;
let step = count * 0.025;
for(let i =0; i<count; i+=step){
arcs = new Arcs(random(0,6),random(1.5,2),i,random(['Y']));
rry.push(arcs);
}
}
function draw(){
// background(0);
translate(width/2,height/2);
for(let i=0; i<rry.length; i++){
rotate(random(360));
rry[i].chora();
}
noLoop();
print('Done');
}
function mouseClicked() {
saveCanvas(document.title+random(0,200000), 'png');
}