geometry.add_boolean: fix typo in the class name

🫣🫣

(cherry picked from commit d772b24bd6)
This commit is contained in:
Andrej730
2026-07-14 18:42:50 +05:00
committed by Dion Moult
parent 672b0f81f4
commit b30bd5b4f2
@@ -90,9 +90,9 @@ def add_boolean(
booleans = []
for second_item in second_items:
if first.is_a("IfcTesselatedFaceSet"):
if first.is_a("IfcTessellatedFaceSet"):
first.Closed = True # For now, trust the user to do the right thing.
if second_item.is_a("IfcTesselatedFaceSet"):
if second_item.is_a("IfcTessellatedFaceSet"):
second_item.Closed = True # For now, trust the user to do the right thing.
if (
operator == "DIFFERENCE"