outer_hull.cpp 442 B

123456789101112131415
  1. #include <test_common.h>
  2. #include <CGAL/Exact_predicates_exact_constructions_kernel.h>
  3. #include <igl/copyleft/cgal/outer_hull.h>
  4. TEST_CASE("OuterHull: CubeWithFold", "[igl/copyleft/cgal]")
  5. {
  6. Eigen::MatrixXd V;
  7. Eigen::MatrixXi F;
  8. test_common::load_mesh("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. }