mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 19:28:14 -06:00
Bugfix: artifacts were introduced when perimeters were recalculated through incremental slicing. #2494
This commit is contained in:
parent
3332282767
commit
9fd0637990
1 changed files with 2 additions and 1 deletions
|
@ -44,7 +44,8 @@ void
|
||||||
LayerRegion::merge_slices()
|
LayerRegion::merge_slices()
|
||||||
{
|
{
|
||||||
ExPolygons expp;
|
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.clear();
|
||||||
this->slices.surfaces.reserve(expp.size());
|
this->slices.surfaces.reserve(expp.size());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue