From b85e8b74d2cfb6d8e354ee2c5ff39352e96eb07f Mon Sep 17 00:00:00 2001 From: Van Dung Nguyen <vandung.nguyen@ulg.ac.be> Date: Mon, 27 May 2013 15:52:15 +0000 Subject: [PATCH] modification order of getFaceVertice() in MSH_TET_10 --- Geo/MTetrahedron.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Geo/MTetrahedron.h b/Geo/MTetrahedron.h index 367e454328..5c6a7b15db 100644 --- a/Geo/MTetrahedron.h +++ b/Geo/MTetrahedron.h @@ -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]]; -- GitLab