mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-08-10 11:37:37 +00:00
Small memory optimization for some infills (#12063)
This commit is contained in:
@@ -277,7 +277,7 @@ void Fill3DHoneycomb::_fill_surface_single(
|
||||
multiline_fill(polylines, params, spacing);
|
||||
|
||||
// clip pattern to boundaries, chain the clipped polylines
|
||||
polylines = intersection_pl(polylines, to_polygons(expolygon));
|
||||
polylines = intersection_pl(std::move(polylines), to_polygons(expolygon));
|
||||
|
||||
if (! polylines.empty()) {
|
||||
// Remove very small bits, but be careful to not remove infill lines connecting thin walls!
|
||||
|
||||
Reference in New Issue
Block a user