Skip to content

Commit

Permalink
Fix of prusa3d#8793: Visible vertical "seam" on fuzzy skin on the pla…
Browse files Browse the repository at this point in the history
…ce where extrusion begins.
  • Loading branch information
hejllukas authored and supermerill committed Sep 13, 2022
1 parent 872109e commit cf876ee
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 @@ -119,7 +119,7 @@ static void fuzzy_extrusion_line(Arachne::ExtrusionLine &ext_lines, double fuzzy
}

if (ext_lines.back().p == ext_lines.front().p) // Connect endpoints.
out.back().p = out.front().p;
out.front().p = out.back().p;

if (out.size() >= 3)
ext_lines.junctions = std::move(out);
Expand Down

0 comments on commit cf876ee

Please sign in to comment.