diff --git a/Geo/MElement.h b/Geo/MElement.h
index 2c70f4cb53641889a86c41ae4b225cd8c8379a4b..4f90fc0f76e76fe75dbf714e070d8d09b166d2e9 100644
--- a/Geo/MElement.h
+++ b/Geo/MElement.h
@@ -82,10 +82,6 @@ class MElement
   // get the vertices
   virtual int getNumVertices() const = 0;
   virtual MVertex *getVertex(int num) = 0;
-  virtual void getCoordinates(int num, double c[3]) const
-  {
-    c[0] = 0.; c[1] = 0.; c[2] = 0.;
-  }
 
   // get the vertex using the I-deas UNV ordering
   virtual MVertex *getVertexUNV(int num){ return getVertex(num); }
diff --git a/Geo/MElementCut.cpp b/Geo/MElementCut.cpp
index 38cda7e2b039e53c93f1448ec08a4251ebc571b1..8c8aa31223bdfbbb6fa1a914392418a59c1ff9c2 100644
--- a/Geo/MElementCut.cpp
+++ b/Geo/MElementCut.cpp
@@ -357,7 +357,8 @@ void MTriangleBorder::getIntegrationPoints(int pOrder, int *npts, IntPt **pts) c
 {
   double uvw[3][3];
   for(int j = 0; j < 3; j++) {
-    double xyz[3]; getCoordinates(j, xyz);
+    MVertex *v = getVertex(j);
+    double xyz[3] = {v->x(), v->y(), v->z()};
     getParent()->xyz2uvw(xyz, uvw[j]);
   }
   MVertex v0(uvw[0][0], uvw[0][1], uvw[0][2]);
@@ -386,7 +387,8 @@ void MLineBorder::getIntegrationPoints(int pOrder, int *npts, IntPt **pts) const
 {
   double uvw[2][3];
   for(int j = 0; j < 2; j++) {
-    double xyz[3]; getCoordinates(j, xyz);
+    MVertex *v = getVertex(j);
+    double xyz[3] = {v->x(), v->y(), v->z()};
     getParent()->xyz2uvw(xyz, uvw[j]);
   }
   MVertex v0(uvw[0][0], uvw[0][1], uvw[0][2]);
diff --git a/Geo/MLine.h b/Geo/MLine.h
index 9b7c4b0dc5620520a0b4ac8275907586652c08fe..8f4689f5619befa55121ef5787d2812631c5a8aa 100644
--- a/Geo/MLine.h
+++ b/Geo/MLine.h
@@ -37,11 +37,6 @@ class MLine : public MElement {
   virtual int getDim(){ return 1; }
   virtual int getNumVertices() const { return 2; }
   virtual MVertex *getVertex(int num){ return _v[num]; }
-  virtual void getCoordinates (int num, double c[3]) const {
-    c[0] = _v[num]->x();
-    c[1] = _v[num]->y();
-    c[2] = _v[num]->z();
-  }
   virtual int getNumEdges(){ return 1; }
   virtual MEdge getEdge(int num){ return MEdge(_v[0], _v[1]); }
   virtual int getNumEdgesRep(){ return 1; }
diff --git a/Geo/MTriangle.h b/Geo/MTriangle.h
index d5fbe71c556407d75cadd19d800f43e2d64cee3c..13516f421cce53a15d59dc141f0d0c04541f3fa4 100644
--- a/Geo/MTriangle.h
+++ b/Geo/MTriangle.h
@@ -54,11 +54,6 @@ class MTriangle : public MElement {
   virtual double distoShapeMeasure();
   virtual int getNumVertices() const { return 3; }
   virtual MVertex *getVertex(int num){ return _v[num]; }
-  virtual void getCoordinates (int num, double c[3]) const {
-    c[0] = _v[num]->x();
-    c[1] = _v[num]->y();
-    c[2] = _v[num]->z();
-  }
   virtual MVertex *getVertexMED(int num)
   {
     static const int map[3] = {0, 2, 1};
diff --git a/Geo/OCCFace.cpp b/Geo/OCCFace.cpp
index 6beecdeb3e037fd381465c2c7fe6aa42648aef8a..1e697f5160438f582659ee1caa7e536d10a1a927 100644
--- a/Geo/OCCFace.cpp
+++ b/Geo/OCCFace.cpp
@@ -50,7 +50,7 @@ OCCFace::OCCFace(GModel *m, TopoDS_Face _s, int num, TopTools_IndexedMapOfShape
           occe->setTrimmed(this);
         }
       }
-    }      
+    }
     
     GEdgeLoop el(l_wire);
     for(GEdgeLoop::citer it = el.begin(); it != el.end(); ++it){