From e22bafdeeb197ec68fe255d69eb259068b2604f0 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Fri, 10 Jan 2025 18:47:43 -0500 Subject: [PATCH] remove unnecessary logs --- src/utils.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils.js b/src/utils.js index 7519861..59318df 100644 --- a/src/utils.js +++ b/src/utils.js @@ -215,8 +215,6 @@ function floodFillRegion( for (const shape of shapes) { growBoundingBox(bbox, shape.boundingBox) } - console.log(bbox) - console.log(startPoint) // Helper function to check if the point is at the boundary of the region function isBoundaryPoint(point) { return point.x <= bbox.x.min - 100 || point.x >= bbox.x.max + 100 ||