From 9caa753d2749d2adfc44ebdee7cfbe1432f8621b Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 14 Nov 2018 12:14:00 +0100 Subject: [PATCH] Fix geom server quantities --- src/ifcgeomserver/IfcGeomServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeomserver/IfcGeomServer.cpp b/src/ifcgeomserver/IfcGeomServer.cpp index 501dbd76fd..33ddb9b217 100644 --- a/src/ifcgeomserver/IfcGeomServer.cpp +++ b/src/ifcgeomserver/IfcGeomServer.cpp @@ -396,8 +396,8 @@ public: if (elem_->calculate_projected_surface_area(a, b, c)) { pt.put(SURFACE_AREA_ALONG_X, a); - pt.put(SURFACE_AREA_ALONG_X, b); - pt.put(SURFACE_AREA_ALONG_X, c); + pt.put(SURFACE_AREA_ALONG_Y, b); + pt.put(SURFACE_AREA_ALONG_Z, c); } std::ostringstream ss;