import { XMLNS } from "./xmlns.js"; function drawBeziersAsSinglePath( g: SVGGElement, beziers: number[][][], class_ = 'thin10 red nofill', delay = 0) { if (beziers.length === 0) { return []; } const x0 = beziers[0][0][0]; const y0 = beziers[0][0][1]; let d = `M${x0} ${y0} `; for (let i=0; i