xxxxxxxxxx
23
function setup() {
createCanvas(600, 600);
angleMode(DEGREES);
}
function draw() {
background("black");
translate(width/2,height/2)
noFill();
strokeWeight(1);
//ellipse
let n = 50;
for (i = 0; i < n; i++) {
stroke(125, 249, 255);
fill(0, 255, 255, 100);
ellipse(0, 150, 50, 200);
rotate(360 / n);
}
fill(255, 215, 0, 250);
noStroke();
circle(0, 0, 150);
}