plot_numeral = (number) => svg`
<svg width="${size * 2 + lineWeight}" height="${size * 2 + spacing + lineWeight}">
<g ${linestyle} transform="translate(${size + lineWeight/2},${lineWeight/2})">
<path d="M${top}L${bottom}" />
${digits(number).map((digit, index) => `<path ${glyphs[digit]} ${transforms[index]} />`)}
</g>
</svg>`