#include #include #include TEST_CASE("OuterHull: CubeWithFold", "[igl/copyleft/cgal]") { Eigen::MatrixXd V; Eigen::MatrixXi F; test_common::load_mesh("cube_with_fold.ply", V, F); Eigen::MatrixXi G,J,flip; // Is this just checking that it doesn't crash? igl::copyleft::cgal::outer_hull_legacy(V, F, G, J, flip); }