canvas = {
const context = DOM.context2d(width, height);
function update() {
mutable points = mutable points;
const curve = new Bezier(mutable points.flat());
const outline = curve.outline(offset1, offset1, offset2, offset2);
context.clearRect(0, 0, width, height);
drawSkeleton(context, curve);
drawCurve(context, curve);
context.strokeStyle = "red";
outline.curves.forEach(c => drawCurve(context, c));
}
return d3.select(context.canvas)
.call(drag, {radius: 20, points: mutable points, update})
.call(update)
.node();
}