Make parametric doors/windows available for ifc2x3

This commit is contained in:
Andrej730
2024-09-23 12:28:29 +05:00
parent e7dd186349
commit 2b35e5fb91
+2 -2
View File
@@ -170,9 +170,9 @@ class AuthoringData:
]
if not type_class:
pass
elif type_class == "IfcWindowType":
elif type_class in ("IfcWindowType", "IfcWindowStyle"):
templates.append(("WINDOW", "Window", "Parametric window"))
elif type_class == "IfcDoorType":
elif type_class in ("IfcDoorType", "IfcDoorStyle"):
templates.append(("DOOR", "Door", "Parametric door"))
elif type_class in ("IfcStairType", "IfcStairFlightType"):
templates.append(("STAIR", "Stair", "Parametric stair"))