Merge pull request #6441 from sloriot/PMP-rncc_call_measure

PMP repair: Avoid large DAG when using Lazy
This commit is contained in:
Laurent Rineau 2022-03-30 16:42:57 +02:00
commit d68488daea
1 changed files with 4 additions and 0 deletions

View File

@ -245,7 +245,9 @@ std::size_t remove_connected_components_of_negligible_size(TriangleMesh& tmesh,
{
const FT fa = face_area(f, tmesh, np);
component_areas[face_cc[f]] += fa;
exact(component_areas[face_cc[f]]);
total_area += fa;
exact(total_area);
}
#ifdef CGAL_PMP_DEBUG_SMALL_CC_REMOVAL
@ -281,6 +283,7 @@ std::size_t remove_connected_components_of_negligible_size(TriangleMesh& tmesh,
get(vpm, target(prev(halfedge(f, tmesh), tmesh), tmesh)));
component_volumes[i] += fv;
exact(component_volumes[i]);
}
// negative volume means the CC was oriented inward
@ -289,6 +292,7 @@ std::size_t remove_connected_components_of_negligible_size(TriangleMesh& tmesh,
{
component_volumes[i] = CGAL::abs(component_volumes[i]);
total_volume += component_volumes[i];
exact(total_volume);
}
#ifdef CGAL_PMP_DEBUG_SMALL_CC_REMOVAL