From 349cbf27b98c335d7623c7df89076394ce4b61c9 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Mon, 1 Dec 2025 11:06:09 -0600 Subject: [PATCH] updated comment for previous commit. --- src/bonsai/bonsai/bim/module/drawing/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/drawing/operator.py b/src/bonsai/bonsai/bim/module/drawing/operator.py index 4921cdee8e..d4b24a5ae7 100644 --- a/src/bonsai/bonsai/bim/module/drawing/operator.py +++ b/src/bonsai/bonsai/bim/module/drawing/operator.py @@ -1006,7 +1006,7 @@ class CreateDrawing(bpy.types.Operator): closed_polygons = shapely.polygonize(unioned_boundaries.geoms) for polygon in closed_polygons.geoms: - # Less than 1mm2 is not worth styling on sheet + # Less than 0.1mm2 is not worth styling on sheet if polygon.area < .1: continue centroid = polygon.centroid