Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukáš Hejl <hejl.lukas@gmail.com>2022-09-02 20:52:44 +0300
committersupermerill <merill@free.fr>2022-09-13 17:06:25 +0300
commitcf876eeafd8db226effcdf7457eb17774d764b9b (patch)
tree64723272e37a0fd8ffc893a9be602be08ca72c9e
parent872109ea42db4c7875b8b4cfdf4205e632c7e191 (diff)
Fix of #8793: Visible vertical "seam" on fuzzy skin on the place where extrusion begins.
-rw-r--r--src/libslic3r/PerimeterGenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/PerimeterGenerator.cpp b/src/libslic3r/PerimeterGenerator.cpp
index 7fbadc32a..922c0064d 100644
--- a/src/libslic3r/PerimeterGenerator.cpp
+++ b/src/libslic3r/PerimeterGenerator.cpp
@@ -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);