Fix wrong wall legth qto calculation

This commit is contained in:
Massimo Fabbro
2025-03-10 13:11:36 +01:00
committed by Dion Moult
parent 7fb6adc025
commit 566fe32ab2
2 changed files with 2 additions and 1 deletions
@@ -611,7 +611,7 @@
"GrossVolume": "get_gross_volume",
"GrossWeight": "get_gross_weight",
"Height": "get_height",
"Length": "get_length",
"Length": "get_x",
"NetFootprintArea": "get_net_footprint_area",
"NetSideArea": "get_net_side_area",
"NetVolume": "get_net_volume",
+1
View File
@@ -336,6 +336,7 @@ class Blender:
"get_gross_perimeter": Function("IfcLengthMeasure", "Gross Perimeter", ""),
"get_height": Function("IfcLengthMeasure", "Height", ""),
"get_length": Function("IfcLengthMeasure", "Length", ""),
"get_x": Function("IfcLengthMeasure", "Length", ""),
"get_opening_depth": Function("IfcLengthMeasure", "Opening Depth", ""),
"get_opening_height": Function("IfcLengthMeasure", "Opening Height", ""),
"get_rectangular_perimeter": Function("IfcLengthMeasure", "Rectangular Perimeter", ""),