Fix a bug about wrong net values qto calculation with IfcOpenshell
This commit is contained in:
Massimo Fabbro
2025-03-09 11:40:43 +01:00
committed by Dion Moult
parent 076f39e2d6
commit b6b553e726
+1 -1
View File
@@ -255,7 +255,7 @@ class IfcOpenShell:
tasks.append((iterator, gross_qtos))
if net_qtos:
for iterator in IfcOpenShell.create_iterators(ifc_file, cls.gross_settings, list(elements)):
for iterator in IfcOpenShell.create_iterators(ifc_file, cls.net_settings, list(elements)):
tasks.append((iterator, net_qtos))
cls.unit_converter = SI2ProjectUnitConverter(ifc_file)