From 3f0ea223d197046ea34367833ca641e70ff88120 Mon Sep 17 00:00:00 2001 From: tamasmeszaros <meszaros.q@gmail.com> Date: Tue, 27 Nov 2018 11:09:25 +0100 Subject: [PATCH] Speeding up the auto rotation algorithm (decreasing accuracy) --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 4afc3a26c..5ef906d29 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -1732,7 +1732,7 @@ void Plater::priv::sla_optimize_rotation() { }); auto r = sla::find_best_rotation( - *o, .1f, + *o, .005f, [stfn](unsigned s) { stfn(s, L("Searching for optimal orientation")); }, [this](){ return !rotoptimizing.load(); } );