xxxxxxxxxx
43
let width = 300;
let height = 400;
let stiches = [];
let nums =100;
function setup() {
createCanvas(width , height);
angleMode(DEGREES);
for(let i=0;i<nums; i++){
let c = 'hsba('+floor(random(360))+',60%,90%,0.6)';
let st = new Stich(10,20 + (3 * i + 1),55,5,c);
stiches.push(st);
}
}
function draw(){
background(0);
for(let i=0;i<nums; i++){
stiches[i].display();
}
noLoop();
}