Bugfix: artifacts were introduced when perimeters were recalculated through incremental slicing. #2494
This commit is contained in:
parent
3332282767
commit
9fd0637990
@ -44,7 +44,8 @@ void
|
||||
LayerRegion::merge_slices()
|
||||
{
|
||||
ExPolygons expp;
|
||||
union_(this->slices, &expp);
|
||||
// without safety offset, artifacts are generated (GH #2494)
|
||||
union_(this->slices, &expp, true);
|
||||
this->slices.surfaces.clear();
|
||||
this->slices.surfaces.reserve(expp.size());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user