Mesh: improve function to fix points on edge

This commit is contained in:
wmayer
2021-09-29 19:32:18 +02:00
parent fe7f4c4be7
commit 8ff9bbc930
6 changed files with 86 additions and 20 deletions

View File

@@ -1501,9 +1501,9 @@ bool MeshObject::hasPointsOnEdge() const
return !nan.Evaluate();
}
void MeshObject::removePointsOnEdge()
void MeshObject::removePointsOnEdge(bool fillBoundary)
{
MeshCore::MeshFixPointOnEdge nan(_kernel);
MeshCore::MeshFixPointOnEdge nan(_kernel, fillBoundary);
nan.Fixup();
}