BIM: add missing DraftGeomUtils import (#24683)

Added import for DraftGeomUtils to ArchCommands.makeFace to prevent crash.
This commit is contained in:
Furgo
2025-10-16 18:00:32 +02:00
committed by GitHub
parent aef287cbb6
commit a89c7eedcf

View File

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