function voronoi(points, name) {
const delaunay = Delaunay.from(points);
const voronoi = delaunay.voronoi([0, 0, width, height]);
const context = DOM.context2d(width, height);
context.beginPath();
voronoi.render(context);
context.strokeStyle = "black";
context.lineWidth = 1.5;
context.stroke();
context.beginPath();
delaunay.renderPoints(context, 1.5);
context.fill();
return context.canvas;
}