From f47a0408e7500cedc45590c74b0d3ee8536520c9 Mon Sep 17 00:00:00 2001 From: "shuai.liu" Date: Fri, 15 Sep 2023 09:42:05 +0800 Subject: [PATCH] FIX: [STUDIO-3921] orientation bug JIRA: STUDIO-3921 fix the orientation bug that multiple objects does not perform the same increase num of hull faces to iterate Change-Id: I9c662e1e7858521585de612d7f1e9cd213e183bb (cherry picked from commit 6a781a338df9d5a009ac5a667e8b1bc8009e32a9) --- src/libslic3r/ModelArrange.cpp | 2 +- src/libslic3r/Orient.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/ModelArrange.cpp b/src/libslic3r/ModelArrange.cpp index cb3f742f6..56ec4a220 100644 --- a/src/libslic3r/ModelArrange.cpp +++ b/src/libslic3r/ModelArrange.cpp @@ -168,7 +168,7 @@ ArrangePolygon get_instance_arrange_poly(ModelInstance* instance, const Slic3r:: if (enable_support && (support_type == stNormalAuto || support_type == stNormal)) ap.brim_width = 5.0; - else if(enable_support) ap.brim_width = 22.0; + else if(enable_support) ap.brim_width = 11.0; #endif ap.height = obj->bounding_box().size().z(); diff --git a/src/libslic3r/Orient.cpp b/src/libslic3r/Orient.cpp index 0011898bc..a87694ad9 100644 --- a/src/libslic3r/Orient.cpp +++ b/src/libslic3r/Orient.cpp @@ -115,7 +115,7 @@ public: area_cumulation_accurate(face_normals, normals_quantize, areas, 10); - area_cumulation_accurate(face_normals_hull, normals_hull_quantize, areas_hull, 10); + area_cumulation_accurate(face_normals_hull, normals_hull_quantize, areas_hull, 14); add_supplements();