Skip to content
Snippets Groups Projects
Commit 23d0f4e7 authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[T/MeL] Use MathLib::ORIGIN instead of GeoLib::ORIGIN.

parent 73516d29
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@
#include <memory>
#include "MathLib/Point3d.h"
#include "MeshLib/Mesh.h"
#include "MeshLib/Node.h"
#include "MeshLib/MeshQuality/MeshValidation.h"
......@@ -60,7 +62,7 @@ TEST(MeshValidation, DetectHolesHex)
{
auto mesh = std::unique_ptr<MeshLib::Mesh>{
MeshLib::MeshGenerator::generateRegularHexMesh(
5,4,4,1.0,1.0,1.0,GeoLib::ORIGIN, "mesh")};
5, 4, 4, 1.0, 1.0, 1.0, MathLib::ORIGIN, "mesh")};
ASSERT_EQ(0, MeshLib::MeshValidation::detectHoles(*mesh));
detectHoles(*mesh, {27}, 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment