outer_hull.cpp 412 B

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