From fe1eccdf3787b299ad22a8caaad06962d43d910b Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 26 Aug 2009 13:28:38 +0000
Subject: [PATCH] even better: use protected _v

---
 Geo/MElementCut.cpp | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/Geo/MElementCut.cpp b/Geo/MElementCut.cpp
index 8c8aa31223..8546fc8982 100644
--- a/Geo/MElementCut.cpp
+++ b/Geo/MElementCut.cpp
@@ -357,8 +357,7 @@ void MTriangleBorder::getIntegrationPoints(int pOrder, int *npts, IntPt **pts) c
 {
   double uvw[3][3];
   for(int j = 0; j < 3; j++) {
-    MVertex *v = getVertex(j);
-    double xyz[3] = {v->x(), v->y(), v->z()};
+    double xyz[3] = {_v[j]->x(), _v[j]->y(), _v[j]->z()};
     getParent()->xyz2uvw(xyz, uvw[j]);
   }
   MVertex v0(uvw[0][0], uvw[0][1], uvw[0][2]);
@@ -387,8 +386,7 @@ void MLineBorder::getIntegrationPoints(int pOrder, int *npts, IntPt **pts) const
 {
   double uvw[2][3];
   for(int j = 0; j < 2; j++) {
-    MVertex *v = getVertex(j);
-    double xyz[3] = {v->x(), v->y(), v->z()};
+    double xyz[3] = {_v[j]->x(), _v[j]->y(), _v[j]->z()};
     getParent()->xyz2uvw(xyz, uvw[j]);
   }
   MVertex v0(uvw[0][0], uvw[0][1], uvw[0][2]);
-- 
GitLab