xxxxxxxxxx
22
let r = 50;
let petals = 7;
function setup() {
createCanvas(400, 400);
fill(0);
}
function draw() {
background(220);
translate(width/2, height/2);
fill(255, 0, 125);
for (let i=0; i<petals; i++){
ellipse(r*cos((TWO_PI/petals)*i), r*sin((TWO_PI/petals)*i), 50, 50);
}
fill(255, 225, 29);
ellipse(0, 0, 50, 50);
}