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

[MeL] Add MeshSubset::getNodes().

parent 0e4b5f6e
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,12 @@ public:
return _msh.getElements().cend();
}
std::vector<Node*> const& getNodes() const
{
assert(_nodes);
return *_nodes;
}
/// Constructs a new mesh subset which is a set intersection of the current
/// nodes and the provided vector of nodes.
/// An empty mesh subset may be returned, not a nullptr, in case of empty
......
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