Skip to content

Commit

Permalink
Update Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
beachtom committed Jul 18, 2024
1 parent 240c281 commit 4b34831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpp/web-ifc-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ std::vector<webifc::geometry::IfcAlignment> 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);
}
Expand Down Expand Up @@ -92,7 +92,7 @@ std::vector<webifc::geometry::IfcCrossSections> 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);
}
}
Expand Down

0 comments on commit 4b34831

Please sign in to comment.