{
const path = ({ pathDefinition, point }) => {
return svg.fragment`<path stroke="red" fill="rgba(0, 0, 0, 0.3)" opacity="0.8" d=${pathDefinition} vector-effect="non-scaling-stroke"></circle>`;
};
const container = (children) => {
return html`
<svg style="border: 1px solid black; height: 400px;" viewBox="0 10 40 70" preserveAspectRatio="none">${children}</svg>
`;
};
const pathsBroken = getCells(voronoiPointsBroken).map(path);
const pathsFixed = getCells(voronoiPointsFixed).map(path);
return html`
${container(pathsBroken)}
${container(pathsFixed)}
`;
}