#include #include #include #include #include TEST_CASE( "igl_copyleft_cgal_mesh_to_polyhedron: positive", "[igl/copyleft/cgal/]") { const auto test_case = [](const std::string ¶m) { Eigen::MatrixXd V; Eigen::MatrixXi F; igl::read_triangle_mesh(test_common::data_path(param), V, F); CGAL::Polyhedron_3< CGAL::Simple_cartesian, CGAL::Polyhedron_items_with_id_3, CGAL::HalfedgeDS_default, std::allocator > poly; REQUIRE ( igl::copyleft::cgal::mesh_to_polyhedron(V,F,poly) ); }; test_common::run_test_cases(test_common::manifold_meshes(), test_case); } TEST_CASE( "igl_copyleft_cgal_mesh_to_polyhedron: negative", "[igl/copyleft/cgal/]") { Eigen::MatrixXd V; Eigen::MatrixXi F; igl::read_triangle_mesh(test_common::data_path("truck.obj"), V, F); CGAL::Polyhedron_3< CGAL::Simple_cartesian, CGAL::Polyhedron_items_with_id_3, CGAL::HalfedgeDS_default, std::allocator > poly; REQUIRE (! igl::copyleft::cgal::mesh_to_polyhedron(V,F,poly) ); }