From d61982b3672d814ed78f3422fd30d6f37b521946 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@dune-project.org>
Date: Wed, 7 Sep 2005 12:20:44 +0000
Subject: [PATCH] bugfix in the reader for quadrilaterals

[[Imported from SVN: r2779]]
---
 io/file/amiramesh/amuggridreader.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/io/file/amiramesh/amuggridreader.cc b/io/file/amiramesh/amuggridreader.cc
index c6da1f252..097b2d523 100644
--- a/io/file/amiramesh/amuggridreader.cc
+++ b/io/file/amiramesh/amuggridreader.cc
@@ -1190,8 +1190,8 @@ void Dune::AmiraMeshReader<Dune::UGGrid<2,2> >::read(Dune::UGGrid<2,2>& grid,
       /* only quadrilaterals */
       cornerIDs[0] = isBoundaryNode[elemData[4*i]-1];
       cornerIDs[1] = isBoundaryNode[elemData[4*i+1]-1];
-      cornerIDs[2] = isBoundaryNode[elemData[4*i+2]-1];
-      cornerIDs[3] = isBoundaryNode[elemData[4*i+3]-1];
+      cornerIDs[2] = isBoundaryNode[elemData[4*i+3]-1];
+      cornerIDs[3] = isBoundaryNode[elemData[4*i+2]-1];
 
       grid.insertElement(cube, cornerIDs);
 
-- 
GitLab