remove unnecessary logs

This commit is contained in:
Skyler Lehmkuhl 2025-01-10 18:47:43 -05:00
parent cf90cc183c
commit e22bafdeeb
1 changed files with 0 additions and 2 deletions

View File

@ -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 ||