{
const ctx = DOM.context2d(width, height);
ctx.translate(width / 2, height / 2);
ctx.lineWidth = 1.5;
ctx.strokeStyle = '#aaa';
ctx.stroke(new Path2D(spirals_paths.join('')));
ctx.fillStyle = '#c7326b';
startpoints.forEach(([x, y]) => ctx.rect(x - 2, y - 2, 4, 4));
ctx.fill();
return ctx.canvas;
}