hyporo-cpp/source/hyporo/hmesh/tests/hmesh-test.cpp

11 lines
209 B
C++
Raw Normal View History

2022-09-22 20:43:06 +05:00
#include <gtest/gtest.h>
2022-11-04 18:38:39 +05:00
#include "../mesh.hpp"
2022-09-22 20:43:06 +05:00
2022-11-04 18:38:39 +05:00
TEST(hmeshTest, Mesh)
2022-09-22 20:43:06 +05:00
{
2022-11-04 18:38:39 +05:00
hpr::mesh::Mesh mesh;
mesh.addVertex(1, 2, 3);
mesh.addVertex(1, 3, 3);
mesh.addEdge(mesh.vertex(0), mesh.vertex(1));
2022-09-22 20:43:06 +05:00
}