Skip to content

Commit

Permalink
use an existing data set
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed May 15, 2024
1 parent 5a9321d commit d69642c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ int main(const int, const char**) {
// Input.

Point_set point_set;
CGAL::IO::read_point_set("Cottage_cut.ply", point_set);
CGAL::IO::read_point_set(CGAL::data_file_path("points_3/building.ply"), point_set);

auto param = CGAL::parameters::maximum_distance(0.33)
.maximum_angle(32)
Expand Down Expand Up @@ -48,5 +48,7 @@ int main(const int, const char**) {
if (!failed)
std::cout << "done!";

// CGAL::IO::write_polygon_soup("out.off", vtx, polylist);

return failed ? EXIT_FAILURE : EXIT_SUCCESS;
}

0 comments on commit d69642c

Please sign in to comment.