From cbe3c4f238f405301a67ab26198fa757db69f475 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Tue, 28 Feb 2023 08:59:36 +0100 Subject: [PATCH] Fix of recent Organic support & Raft implementation. --- src/libslic3r/TreeSupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/TreeSupport.cpp b/src/libslic3r/TreeSupport.cpp index 60ab764d1f..b61ffc31cb 100644 --- a/src/libslic3r/TreeSupport.cpp +++ b/src/libslic3r/TreeSupport.cpp @@ -1440,7 +1440,7 @@ static void generate_initial_areas( top_contacts[i] = nullptr; move_bounds[i].clear(); } - if (raft_contact_layer_idx != std::numeric_limits::max() && print_object.config().raft_expansion.value > 0) { + if (raft_contact_layer_idx != std::numeric_limits::max() && print_object.config().raft_expansion.value > 0) { // If any tips at first_tree_layer now are completely inside the expanded raft layer, remove them as well before they are propagated to the ground. Polygons &raft_polygons = top_contacts[raft_contact_layer_idx]->polygons; EdgeGrid::Grid grid(get_extents(raft_polygons).inflated(SCALED_EPSILON));