Skip to content
Snippets Groups Projects
Commit 6c637784 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MeL/MeshEditing] constify MeshRevision::simplifyMesh

parent 55cbe857
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,8 @@ unsigned MeshRevision::getNumberOfCollapsableNodes(double eps) const
}
MeshLib::Mesh* MeshRevision::simplifyMesh(const std::string& new_mesh_name,
double eps, unsigned min_elem_dim)
double eps,
unsigned min_elem_dim) const
{
if (this->_mesh.getNumberOfElements() == 0)
{
......
......@@ -68,7 +68,7 @@ public:
* mesh to contain 2D elements)
*/
MeshLib::Mesh* simplifyMesh(const std::string& new_mesh_name, double eps,
unsigned min_elem_dim = 1);
unsigned min_elem_dim = 1) const;
private:
/// Constructs a new node vector for the resulting mesh by removing all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment