Lazy list of all Lines.
List<CubicLine> get lines { final list = <CubicLine>[]; _paths.forEach((data) => list.addAll(data._lines)); return list; }