xxxxxxxxxx
38
function setup() {
createCanvas(386, 494);
noLoop();
}
function draw() {
background(220, 10, 120);
centerX = width / 2;
centerY = height / 2;
minDim = min(width, height);
minDim34 = 0.75 * minDim;
mainColor = color(255);
highColor = color(255, 220, 0);
lowColor = color(0);
noFill();
strokeWeight(minDim / 12);
strokeCap(SQUARE);
stroke(mainColor);
arc(centerX, centerY, minDim, minDim, -PI / 3, PI / 6);
stroke(highColor);
arc(centerX, centerY, minDim, minDim, PI / 2, PI);
stroke(mainColor);
arc(centerX, centerY, minDim34, minDim34, 0.9 * PI, PI / 3);
stroke(lowColor);
arc(centerX, centerY, minDim34, minDim34, PI - 1.5, PI - 1);
stroke(highColor);
arc(centerX, centerY, minDim / 2, minDim / 2, PI / 4, PI);
stroke(lowColor);
arc(centerX, centerY, minDim / 4, minDim / 4, PI / 10, PI);
}