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

[MeL] Add missing parameter documentation.

parent b6be55e2
No related branches found
No related tags found
No related merge requests found
...@@ -59,15 +59,18 @@ public: ...@@ -59,15 +59,18 @@ public:
std::vector<std::size_t> collapseNodeIndices(double eps) const; std::vector<std::size_t> collapseNodeIndices(double eps) const;
/** /**
* Create a new mesh where all nodes with a distance < eps from each other are collapsed. * Create a new mesh where all nodes with a distance < eps from each other
* Elements are adjusted accordingly and elements with nonplanar faces are subdivided into * are collapsed.
* geometrically correct elements. * Elements are adjusted accordingly and elements with nonplanar faces are
* @param eps Minimum distance for nodes not to be collapsed * subdivided into geometrically correct elements.
* @param min_elem_dim Minimum dimension of elements to be inserted into new mesh (i.e. * @param new_mesh_name New name.
* min_elem_dim=3 will prevent the new mesh to contain 2D elements) * @param eps Minimum distance for nodes not to be collapsed
* @param min_elem_dim Minimum dimension of elements to be inserted into
* new mesh (i.e. min_elem_dim=3 will prevent the new
* mesh to contain 2D elements)
*/ */
MeshLib::Mesh* simplifyMesh(const std::string &new_mesh_name, double eps, MeshLib::Mesh* simplifyMesh(const std::string& new_mesh_name, double eps,
unsigned min_elem_dim = 1); unsigned min_elem_dim = 1);
/** /**
* Create a new mesh where all elements with nonplanar faces are subdivided into simpler * Create a new mesh where all elements with nonplanar faces are subdivided into simpler
......
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