data = {
reset;
const xs = [1, 3, 5].map(d => w * d / 6);
const colors = ["#116F7C", "#4F5AB1", "#B9275B"];
return d3.range(3).map(d => {
const x = xs[d];
return {
fill: colors[d],
x,
head: geometric.polygonRandom(headVertices, Math.PI * r ** 2, [x, height / 2]),
mouth: geometric.polygonRandom(mouthVertices, Math.PI * r ** 2 / 6, [x, height / 2 + r / 3])
}
});
}