xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
noLoop();
}
function draw() {
background(220, 20, 120);
arc(100, 100, 200, 200, PI / 4, -PI / 4);
arc(200, 100, 120, 120, PI / 6, -PI / 6);
arc(270, 100, 50, 50, PI / 12, -PI / 12);
}