Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CSG.Sharp.Lib/Primitives/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public IList<Polygon> ClipPolygons(IList<Polygon> polygons)
if (_back != null) back = _back.ClipPolygons(back).ToList();
else back = Enumerable.Empty<Polygon>().ToList();

return front.Concat(back).ToArray();
return front.Concat(back).ToList();
}

// Remove all polygons in this BSP tree that are inside the other BSP tree
Expand Down Expand Up @@ -118,4 +118,4 @@ public void Build(IList<Polygon> polygons)
}
}
}
}
}