]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorndjinga <ndjinga>
Wed, 19 Sep 2007 14:20:25 +0000 (14:20 +0000)
committerndjinga <ndjinga>
Wed, 19 Sep 2007 14:20:25 +0000 (14:20 +0000)
src/INTERP_KERNEL/3D_Vertex_Less.hxx [deleted file]

diff --git a/src/INTERP_KERNEL/3D_Vertex_Less.hxx b/src/INTERP_KERNEL/3D_Vertex_Less.hxx
deleted file mode 100644 (file)
index 49d57f8..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _3D_VERTEX_HXX_
-#define _3D_VERTEX_HXX_
-
-namespace MEDMEM
-{
-  struct Vertex_Less_3D
-  {
-    //double * x;
-    bool operator()(const double * p1,const double * p2) 
-    {
-      return   (*p1 < *p2)
-       ||
-       ((*p1 == *p2)&&(*(p1+1) < *(p2+1)))
-       ||
-       ((*p1 == *p2)&&(*(p1+1) == *(p2+1))&&(*(p1+2) < *(p2+2)));
-    }
-  };
-  
-  //  bool operator()(const double * p1,const double * p2)
-
-};
-#endif