From f8d713a4120c2ecb1ef0a7834781d38eae6af7bf Mon Sep 17 00:00:00 2001 From: Birger Brekke Date: Mon, 16 Sep 2019 07:54:10 +0200 Subject: [PATCH] fixup! Use model-offset in IfcGeom::Kernel and add model-rotation --- src/ifcgeom/IfcGeomIteratorSettings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/IfcGeomIteratorSettings.h b/src/ifcgeom/IfcGeomIteratorSettings.h index 759a3d7ef0..85e305c494 100644 --- a/src/ifcgeom/IfcGeomIteratorSettings.h +++ b/src/ifcgeom/IfcGeomIteratorSettings.h @@ -131,9 +131,9 @@ namespace IfcGeom } /// Optional offset x,y,z that is applied to all elements, (0,0,0) by default. - std::array offset = {0.0, 0.0, 0.0}; + std::array offset = std::array{0.0, 0.0, 0.0}; /// Optional rotation x,y,z,w that is applied to all elements, (0,0,0,1) by default. - std::array rotation = {0.0, 0.0, 0.0, 1.0}; + std::array rotation = std::array{0.0, 0.0, 0.0, 1.0}; protected: SettingField settings_;