Skip to content
Snippets Groups Projects
Commit 62b39377 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Remove unused MeshRevision::collapseNodes().

parent 8bcc88c2
No related branches found
No related tags found
No related merge requests found
...@@ -34,15 +34,6 @@ MeshRevision::MeshRevision(MeshLib::Mesh &mesh) : ...@@ -34,15 +34,6 @@ MeshRevision::MeshRevision(MeshLib::Mesh &mesh) :
_mesh(mesh) _mesh(mesh)
{} {}
MeshLib::Mesh* MeshRevision::collapseNodes(const std::string &new_mesh_name, double eps)
{
std::vector<MeshLib::Node*> new_nodes (this->constructNewNodesArray(this->collapseNodeIndices(eps)));
std::vector<MeshLib::Element*> new_elements (MeshLib::copyElementVector(_mesh.getElements(), new_nodes));
this->resetNodeIDs();
return new MeshLib::Mesh(new_mesh_name, new_nodes, new_elements, _mesh.getProperties());
}
unsigned MeshRevision::getNumberOfCollapsableNodes(double eps) const unsigned MeshRevision::getNumberOfCollapsableNodes(double eps) const
{ {
std::vector<std::size_t> id_map(this->collapseNodeIndices(eps)); std::vector<std::size_t> id_map(this->collapseNodeIndices(eps));
......
...@@ -43,14 +43,6 @@ public: ...@@ -43,14 +43,6 @@ public:
virtual ~MeshRevision() = default; virtual ~MeshRevision() = default;
/**
* Collapsed all nodes with distance < eps but ignores elements
* (i.e. elements with collapsed nodes may result)
* This is implicitely called when calling simplifyMesh(), so it does not need to be
* called separately when using simplifyMesh().
*/
MeshLib::Mesh* collapseNodes(const std::string &new_mesh_name, double eps);
/// Returns the number of potentially collapsable nodes /// Returns the number of potentially collapsable nodes
unsigned getNumberOfCollapsableNodes(double eps = std::numeric_limits<double>::epsilon()) const; unsigned getNumberOfCollapsableNodes(double eps = std::numeric_limits<double>::epsilon()) const;
......
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