Skip to content
Snippets Groups Projects
Commit 680066dd authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Dmitrij Naumov
Browse files

[ML] Add elments iterator to MeshSubset.

parent 10f6593f
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,16 @@ public: ...@@ -81,6 +81,16 @@ public:
return (_eles==nullptr) ? 0 : _eles->size(); return (_eles==nullptr) ? 0 : _eles->size();
} }
std::vector<Element*>::const_iterator elementsBegin() const
{
return _msh.elementsBegin();
}
std::vector<Element*>::const_iterator elementsEnd() const
{
return _msh.elementsEnd();
}
private: private:
const Mesh& _msh; const Mesh& _msh;
std::vector<Node*> const* _nodes; std::vector<Node*> const* _nodes;
......
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