From a219b6ad89ca040ec6536b5fdaf975361da0d187 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 28 Jun 2001 07:46:11 +0000 Subject: [PATCH] reverse quadrangle orientation --- Mesh/2D_Recombine.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Mesh/2D_Recombine.cpp b/Mesh/2D_Recombine.cpp index b7dee3ff79..b4298957a9 100644 --- a/Mesh/2D_Recombine.cpp +++ b/Mesh/2D_Recombine.cpp @@ -1,4 +1,4 @@ -// $Id: 2D_Recombine.cpp,v 1.7 2001-06-06 21:29:58 remacle Exp $ +// $Id: 2D_Recombine.cpp,v 1.8 2001-06-28 07:46:11 geuzaine Exp $ #include "Gmsh.h" #include "Const.h" @@ -59,10 +59,10 @@ void Recombine_Farce (void *a, void *b){ if(s2->V[3]) return; Tree_Add(RecSimplex,&s1); Tree_Suppress(TREEELM,&s1); - s2->V[0] = ed->V[0]; - s2->V[1] = ed->O[0]; - s2->V[2] = ed->V[1]; - s2->V[3] = ed->O[1]; + s2->V[3] = ed->V[0]; + s2->V[2] = ed->O[0]; + s2->V[1] = ed->V[1]; + s2->V[0] = ed->O[1]; RECNUM++; } } -- GitLab