From 23389dcac052eda91929eb27e3970e76515921e3 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 26 Sep 2024 15:18:10 +0500 Subject: [PATCH] Update ellipse profile just for consistency with 11deb95 --- src/ifcgeom/mapping/IfcEllipseProfileDef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/mapping/IfcEllipseProfileDef.cpp b/src/ifcgeom/mapping/IfcEllipseProfileDef.cpp index 5608b01cdf..1c1824c978 100644 --- a/src/ifcgeom/mapping/IfcEllipseProfileDef.cpp +++ b/src/ifcgeom/mapping/IfcEllipseProfileDef.cpp @@ -48,8 +48,8 @@ taxonomy::ptr mapping::map_impl(const IfcSchema::IfcEllipseProfileDef* inst) { // @todo is a copy necesary here or can this be done in place? auto m4_copy = *m4; m4->components() << - -m4_copy.components().col(1), - m4_copy.components().col(0), + m4_copy.components().col(1), + -m4_copy.components().col(0), m4_copy.components().col(2), m4_copy.components().col(3); std::swap(rx, ry);