From 6e312e20271df735e60de070cd8cb08004124ccf Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Wed, 26 Feb 2025 19:36:08 +0800 Subject: [PATCH] ENH: add circle parameter for posSlice jira: none Change-Id: Ib95f2a2de4251f8dcf419e2241d83c9095651382 --- src/libslic3r/Print.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 0575eb065..15512cece 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -235,6 +235,18 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n || opt_key == "filament_shrink" || opt_key == "enable_circle_compensation" || opt_key == "circle_compensation_manual_offset" + || opt_key == "circle_compensation_speed" + || opt_key == "counter_coef_1" + || opt_key == "counter_coef_2" + || opt_key == "counter_coef_3" + || opt_key == "hole_coef_1" + || opt_key == "hole_coef_2" + || opt_key == "hole_coef_3" + || opt_key == "counter_limit_min" + || opt_key == "counter_limit_max" + || opt_key == "hole_limit_min" + || opt_key == "hole_limit_max" + || opt_key == "diameter_limit" // Spiral Vase forces different kind of slicing than the normal model: // In Spiral Vase mode, holes are closed and only the largest area contour is kept at each layer. // Therefore toggling the Spiral Vase on / off requires complete reslicing.