remove trailing whitespaces

This commit is contained in:
Sébastien Loriot 2022-01-28 15:41:46 +01:00
parent 429ddd4e73
commit 6745fb79ea
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ int main()
PMP::isotropic_remeshing(faces(sm), 0.1, sm, CGAL::parameters::edge_is_constrained_map(ecm));
std::ofstream("cube_remeshed.off") << sm;
assert(faces(sm).size()>100);
// decimate the mesh
PMP::remesh_planar_patches(sm);
std::ofstream("cube_decimated.off") << sm;

View File

@ -42,7 +42,7 @@ if(TARGET CGAL::Eigen3_support)
PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_shape_smoothing.cpp")
target_link_libraries(test_shape_smoothing PUBLIC CGAL::Eigen3_support)
create_single_source_cgal_program("test_decimation_of_planar_patches.cpp")
target_link_libraries(test_decimation_of_planar_patches PUBLIC CGAL::Eigen3_support)
endif()