Skip to content
Snippets Groups Projects
Commit b85e8b74 authored by Van Dung Nguyen's avatar Van Dung Nguyen
Browse files

modification order of getFaceVertice() in MSH_TET_10

parent 4c91ed76
No related branches found
No related tags found
No related merge requests found
...@@ -246,10 +246,10 @@ class MTetrahedron10 : public MTetrahedron { ...@@ -246,10 +246,10 @@ class MTetrahedron10 : public MTetrahedron {
v.resize(6); v.resize(6);
MTetrahedron::_getFaceVertices(num, v); MTetrahedron::_getFaceVertices(num, v);
static const int f[4][3] = { static const int f[4][3] = {
{0, 1, 2}, {2, 1, 0},
{0, 3, 5}, {0, 5, 3},
{2, 3, 4}, {3, 4, 2},
{1, 4, 5} {5, 1, 4}
}; };
v[3] = _vs[f[num][0]]; v[3] = _vs[f[num][0]];
v[4] = _vs[f[num][1]]; v[4] = _vs[f[num][1]];
......
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