remove unneeded simplify

supermerill/SuperSlicer#961
This commit is contained in:
remi durand 2021-06-15 11:53:53 +02:00
parent e2a7c7368c
commit c0521ffa6f

View File

@ -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()) {