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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukáš Hejl <hejl.lukas@gmail.com>2022-08-17 16:55:02 +0300
committerLukáš Hejl <hejl.lukas@gmail.com>2022-08-18 12:22:39 +0300
commit2115b407288fdbe77d575f08bdc1262d1dbee4b2 (patch)
tree6bc26393c8c11de3533227bf233bc31e5d47a361
parente9f0f4bd0dfb5cadb5fd6db7aa5ca3e7b89a48e3 (diff)
Fixed incorrectly computed starting position in Concentric infill when Arachne is used.
-rw-r--r--src/libslic3r/Fill/FillConcentric.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libslic3r/Fill/FillConcentric.cpp b/src/libslic3r/Fill/FillConcentric.cpp
index 17bdfafaf..69f530720 100644
--- a/src/libslic3r/Fill/FillConcentric.cpp
+++ b/src/libslic3r/Fill/FillConcentric.cpp
@@ -106,6 +106,7 @@ void FillConcentric::_fill_surface_single(const FillParams &params,
thick_polyline.points.emplace_back(thick_polyline.points.front());
}
thick_polylines_out.emplace_back(std::move(thick_polyline));
+ last_pos = thick_polylines_out.back().last_point();
}
// clip the paths to prevent the extruder from getting exactly on the first point of the loop