diff --git a/MeshLib/Mesh.cpp b/MeshLib/Mesh.cpp index 8e121764ddbe617f7d0adeb2e820c25fd49e7716..19a54a8b08bf55f58b9b0c3713cc7672e2bc573f 100644 --- a/MeshLib/Mesh.cpp +++ b/MeshLib/Mesh.cpp @@ -184,18 +184,6 @@ void Mesh::setElementsConnectedToNodes() } } -void Mesh::resetElementsConnectedToNodes() -{ - for (auto& node : _nodes) - { - if (node) - { - node->clearElements(); - } - } - this->setElementsConnectedToNodes(); -} - void Mesh::calcEdgeLengthRange() { this->_edge_length.first = std::numeric_limits<double>::max(); diff --git a/MeshLib/Mesh.h b/MeshLib/Mesh.h index 5ab863bd3435ad3f5c5db2df599046942ec3994a..8ceaa95cf620db66c2484cf7d2825c646fc04807 100644 --- a/MeshLib/Mesh.h +++ b/MeshLib/Mesh.h @@ -140,13 +140,6 @@ protected: /// Set the minimum and maximum length over the edges of the mesh. void calcEdgeLengthRange(); - /** - * Resets the connected elements for the node vector, i.e. removes the old information and - * calls setElementsConnectedToNodes to set the new information. - * \attention This needs to be called if node neighbourhoods are reset. - */ - void resetElementsConnectedToNodes(); - /// Sets the dimension of the mesh. void setDimension();