From a89c7eedcf6d3985ab8457265ea0b82863e33167 Mon Sep 17 00:00:00 2001 From: Furgo <148809153+furgo16@users.noreply.github.com> Date: Thu, 16 Oct 2025 18:00:32 +0200 Subject: [PATCH] BIM: add missing DraftGeomUtils import (#24683) Added import for DraftGeomUtils to ArchCommands.makeFace to prevent crash. --- src/Mod/BIM/ArchCommands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/BIM/ArchCommands.py b/src/Mod/BIM/ArchCommands.py index 0a034a1665..d06978bb22 100644 --- a/src/Mod/BIM/ArchCommands.py +++ b/src/Mod/BIM/ArchCommands.py @@ -379,6 +379,7 @@ def makeFace(wires, method=2, cleanup=False): """makeFace(wires): makes a face from a list of wires, finding which ones are holes""" # print("makeFace: start:", wires) import Part + import DraftGeomUtils if not isinstance(wires, list): if len(wires.Vertexes) < 3: