|
@@ -4,15 +4,15 @@
|
|
|
|
|
|
TEST_CASE("is_edge_manifold: positive", "[igl]")
|
|
TEST_CASE("is_edge_manifold: positive", "[igl]")
|
|
{
|
|
{
|
|
- const auto test_case = [](const std::string ¶m)
|
|
|
|
- {
|
|
|
|
- Eigen::MatrixXd V;
|
|
|
|
- Eigen::MatrixXi F;
|
|
|
|
- test_common::load_mesh(param, V, F);
|
|
|
|
- REQUIRE ( igl::is_edge_manifold(F) );
|
|
|
|
- };
|
|
|
|
|
|
+ const auto test_case = [](const std::string ¶m)
|
|
|
|
+ {
|
|
|
|
+ Eigen::MatrixXd V;
|
|
|
|
+ Eigen::MatrixXi F;
|
|
|
|
+ test_common::load_mesh(param, V, F);
|
|
|
|
+ REQUIRE ( igl::is_edge_manifold(F) );
|
|
|
|
+ };
|
|
|
|
|
|
- test_common::run_test_cases(test_common::manifold_meshes(), test_case);
|
|
|
|
|
|
+ test_common::run_test_cases(test_common::manifold_meshes(), test_case);
|
|
}
|
|
}
|
|
|
|
|
|
TEST_CASE("is_edge_manifold: negative", "[igl]")
|
|
TEST_CASE("is_edge_manifold: negative", "[igl]")
|