From 4b348314b40771059f2322d2c9b40c1e410f0018 Mon Sep 17 00:00:00 2001 From: Tom Beach Date: Thu, 18 Jul 2024 12:37:53 +0100 Subject: [PATCH] Update Tests --- src/cpp/web-ifc-test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp/web-ifc-test.cpp b/src/cpp/web-ifc-test.cpp index 14fdbf2b..1a0a0d7a 100644 --- a/src/cpp/web-ifc-test.cpp +++ b/src/cpp/web-ifc-test.cpp @@ -61,7 +61,7 @@ std::vector GetAlignments(webifc::parsing::IfcLo for (unsigned int i = 0; i < elements.size(); i++) { - auto alignment = geometryLoader.GetLoader().GetAlignment(elements[i], geometryLoader._expressIDToPlacement); + auto alignment = geometryLoader.GetLoader().GetAlignment(elements[i]); alignment.transform(geometryLoader.GetCoordinationMatrix()); alignments.push_back(alignment); } @@ -92,7 +92,7 @@ std::vector GetCrossSections3D(webifc::parsi for (unsigned int i = 0; i < elements.size(); i++) { - auto crossSection = geometryLoader.GetLoader().GetCrossSections3D(elements[i], geometryLoader._expressIDToPlacement); + auto crossSection = geometryLoader.GetLoader().GetCrossSections3D(elements[i]); crossSections.push_back(crossSection); } }