From 2b39babf5fef0e9c5540eb9f940d25c3988989b5 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 7 Jan 2019 12:05:16 +0100 Subject: [PATCH] Place on bed area limit decreased --- src/slic3r/GUI/GLGizmo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GLGizmo.cpp b/src/slic3r/GUI/GLGizmo.cpp index 5908044f9..7fff44e6f 100644 --- a/src/slic3r/GUI/GLGizmo.cpp +++ b/src/slic3r/GUI/GLGizmo.cpp @@ -1523,7 +1523,7 @@ void GLGizmoFlatten::update_planes() const Transform3d& inst_matrix = m_model_object->instances.front()->get_matrix(); // Following constants are used for discarding too small polygons. - const float minimal_area = 20.f; // in square mm (world coordinates) + const float minimal_area = 5.f; // in square mm (world coordinates) const float minimal_side = 1.f; // mm // Now we'll go through all the facets and append Points of facets sharing the same normal.