From c0521ffa6fd7ecfc03b4ea7cc5f4bae7e601a15a Mon Sep 17 00:00:00 2001 From: remi durand Date: Tue, 15 Jun 2021 11:53:53 +0200 Subject: [PATCH] remove unneeded simplify supermerill/SuperSlicer#961 --- src/libslic3r/PerimeterGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PerimeterGenerator.cpp b/src/libslic3r/PerimeterGenerator.cpp index 2c9b48c20..d8974e153 100644 --- a/src/libslic3r/PerimeterGenerator.cpp +++ b/src/libslic3r/PerimeterGenerator.cpp @@ -135,7 +135,7 @@ void PerimeterGenerator::process() for (surface_idx = 0; surface_idx < all_surfaces.size(); surface_idx++) { Surface *surface = &all_surfaces[surface_idx]; - ExPolygons last = union_ex(surface->expolygon.simplify_p(SCALED_RESOLUTION)); + ExPolygons last = union_ex(surface->expolygon); //compute our unsupported surface ExPolygons unsupported = diff_ex(last, *this->lower_slices, true); if (!unsupported.empty()) {