diff --git a/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py b/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py index 80ebf5bb89..6c8406146c 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py +++ b/src/ifcopenshell-python/ifcopenshell/api/geometry/add_boolean.py @@ -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"