xxxxxxxxxx
50
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
colorMode(HSB);
}
function draw() {
background("#5d737e");
translate(width / 2, height / 2);
stroke("#faf33e");
noFill();
// beginShape();
for (let a = 0; a <= 360; a += 5) {
let x = 250 * cos(a);
let y = 250 * sin(a);
let innerX = 150 * cos(a);
let innerY = 150 * sin(a);
vertex(x, y);
line(x, y, innerX, innerY);
if (y > 0) {
line(x, y, x, width);
}
if (y < 0) {
line(x, y, x, (-1 * width) / 2);
}
}
// endShape(CLOSE);
stroke("#d6f8d6");
noFill();
beginShape();
for (let a = 0; a <= 360; a += 2.5) {
let x = 185 * cos(a);
let y = 185 * sin(a);
let innerX = 120 * cos(a);
let innerY = 120 * sin(a);
vertex(innerX, innerY);
line(x, y, innerX, innerY);
if (x > 0) {
line(x, y, width, y);
}
if (x < 0) {
line(x, y, (-1 * width) / 2, y);
}
}
endShape(CLOSE);
}