outer_hull_legacy.cpp 482 B

123456789101112131415
  1. #include <test_common.h>
  2. #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
  3. #include <igl/copyleft/cgal/outer_hull_legacy.h>
  4. TEST_CASE("outer_hull_legacy: CubeWithFold", "[igl/copyleft/cgal]")
  5. {
  6. Eigen::MatrixXd V;
  7. Eigen::MatrixXi F;
  8. igl::read_triangle_mesh(test_common::data_path("cube_with_fold.ply"), V, F);
  9. Eigen::MatrixXi G,J,flip;
  10. // Is this just checking that it doesn't crash?
  11. igl::copyleft::cgal::outer_hull_legacy(V, F, G, J, flip);
  12. }