Skip to content

Commit

Permalink
Arch: Fixed storey height bug in IFC export
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Jul 27, 2018
1 parent 0576524 commit ee154d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Arch/importIFC.py
Expand Up @@ -1609,7 +1609,7 @@ def export(exportList,filename):
kwargs.update({"CompositionType": "ELEMENT"})
elif ifctype == "IfcBuildingStorey":
kwargs.update({"CompositionType": "ELEMENT",
"Elevation": obj.Placement.Base.z})
"Elevation": obj.Placement.Base.z/1000.0})
elif ifctype == "IfcReinforcingBar":
kwargs.update({"NominalDiameter": obj.Diameter.Value,
"BarLength": obj.Length.Value})
Expand Down

0 comments on commit ee154d9

Please sign in to comment.