private ClipperPolygons CombineLineSegments(ClipperPolygons lines) { PolylineReduction reduction = new PolylineReduction(); foreach (var points in lines) { reduction.AddLine(points); } return(reduction.Reduce()); }
private ClipperPolygons CombineLineSegments(ClipperPolygons lines) { PolylineReduction reduction = new PolylineReduction(); foreach (var points in lines) { reduction.AddLine(points); } return reduction.Reduce(); }