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 {
v.resize(6);
MTetrahedron::_getFaceVertices(num, v);
static const int f[4][3] = {
{0, 1, 2},
{0, 3, 5},
{2, 3, 4},
{1, 4, 5}
{2, 1, 0},
{0, 5, 3},
{3, 4, 2},
{5, 1, 4}
};
v[3] = _vs[f[num][0]];
v[4] = _vs[f[num][1]];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment