xxxxxxxxxx
17
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
// translate(-200,-200)
beginShape();
for(let i = 0; i < 20; i++){
fill(random(255),random(255),random(255))
curveVertex(random(10,width*0.8), random(10,height*0.8));
endShape(CLOSE);
}
noLoop();
}