List<CubicArc> toArcs() { final arcs = <CubicArc>[]; for (final line in _lines) { arcs.addAll(line.toArc()); } return arcs; }