xxxxxxxxxx
24
function setup() {
createCanvas(300, 300);
noLoop();
}
function draw() {
background(220, 10, 120);
noFill();
stroke(255);
strokeWeight(32);
strokeCap(SQUARE);
arc(200, 200, 400, 400, -PI / 3, PI / 6);
arc(200, 200, 400, 400, PI / 2, PI);
arc(200, 200, 300, 300, 0.9 * PI, PI / 3);
arc(200, 200, 300, 300, PI - 1.5, PI - 1);
arc(200, 200, 200, 200, PI / 4, PI);
arc(200, 200, 100, 100, PI / 10, PI);
}