Skip to content
Snippets Groups Projects
Commit bc4d040b authored by Stefen Guzik's avatar Stefen Guzik
Browse files

Bug fix to getNumMeshElements(unsigned*)
parent cdff80e5
No related branches found
No related tags found
No related merge requests found
...@@ -53,8 +53,8 @@ void GRegion::getNumMeshElements(unsigned *const c) const ...@@ -53,8 +53,8 @@ void GRegion::getNumMeshElements(unsigned *const c) const
{ {
c[0] += tetrahedra.size(); c[0] += tetrahedra.size();
c[1] += hexahedra.size(); c[1] += hexahedra.size();
c[3] += prisms.size(); c[2] += prisms.size();
c[4] += pyramids.size(); c[3] += pyramids.size();
} }
MElement *const *GRegion::getStartElementType(int type) const MElement *const *GRegion::getStartElementType(int type) 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