From 2b395e07b82c3c5d0a5be912d5a09a24bb52d9b5 Mon Sep 17 00:00:00 2001 From: kreso-t Date: Thu, 23 Aug 2018 17:44:55 +0200 Subject: [PATCH] Adaptive - finer tolerances for path cleaning --- src/Mod/Path/libarea/Adaptive.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/libarea/Adaptive.hpp b/src/Mod/Path/libarea/Adaptive.hpp index 65340c26ed..3780bd1733 100644 --- a/src/Mod/Path/libarea/Adaptive.hpp +++ b/src/Mod/Path/libarea/Adaptive.hpp @@ -110,8 +110,8 @@ namespace AdaptivePath { const double ENGAGE_AREA_THR_FACTOR=0.2; // influences minimal engage area (factor relation to optimal) const double ENGAGE_SCAN_DISTANCE_FACTOR=0.1; // influences the engage scan/stepping distance - const double CLEAN_PATH_TOLERANCE = 1; - const double FINISHING_CLEAN_PATH_TOLERANCE = 0.5; + const double CLEAN_PATH_TOLERANCE = 0.5; + const double FINISHING_CLEAN_PATH_TOLERANCE = 0.1; // used for filtering out of insignificant cuts: const double MIN_CUT_AREA_FACTOR = 0.02; // influences filtering of cuts that with cumulative area below threshold, reasonable value is between 0.01 and 0.1