xxxxxxxxxx
21
function setup() {
// createCanvas(3200, 800);
createCanvas(500, 500);
noStroke();
fill(255);
ellipse(width/2,height/2,500,500);
save("rounded.png")
noLoop()
}
function draw() {
// background(220);
// noStroke();
// fill(255);
// rect(0,0,width,height,80);
// save("rounded.png")
// noLoop()
}