p5(sketch => {
sketch.setup = function() {
sketch.createCanvas(width, 400);
sketch.background(220);
};
sketch.draw = function() {
sketch.fill(`rgba(0, 250, 20, 0.1)`);
sketch.stroke(127, 63, 120);
sketch.noStroke();
sketch.rect(40, 120, 120, 40);
sketch.circle(240, 240, 80);
sketch.triangle(300, 100, 320, 100, 310, 80);
sketch.translate(580, 200);
const petals = d3.range(10);
petals.map(function() {
sketch.ellipse(0, 30, 20, 80);
sketch.rotate(sketch.PI / 5);
});
};
})