Skip to content

Commit

Permalink
Use one wall threshold set in GUI without limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
vovodroid committed Jul 24, 2024
1 parent 3ce9ba5 commit 80207d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/PerimeterGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2537,7 +2537,7 @@ void PerimeterGenerator::process_arachne()

coord_t perimeter_width = this->perimeter_flow.scaled_width();
// skip if the exposed area is smaller than "min_width_top_surface"
double min_width_top_surface = std::max(double(ext_perimeter_spacing / 2. + 10), scale_(config->min_width_top_surface.get_abs_value(unscale_(perimeter_width))));
double min_width_top_surface = scale_(config->min_width_top_surface.get_abs_value(unscale_(perimeter_width)));

// Get top ExPolygons from current infill contour.
Polygons upper_slices_clipped = ClipperUtils::clip_clipper_polygons_with_subject_bbox(*upper_slices, infill_contour_bbox);
Expand Down

0 comments on commit 80207d5

Please sign in to comment.