Salome HOME
Issue 0020386: EDF 1039 SMESH : FindNodeClosestTo problem
[modules/smesh.git] / src / SMESH / SMESH_MeshEditor.cxx
index 18ae0388b20c898913514875fcc332dce835a042..8b32e77a6109ddaee7d3028ad3215f19a7d607a2 100644 (file)
@@ -4614,7 +4614,7 @@ struct SMESH_NodeSearcherImpl: public SMESH_NodeSearcher
     SMDS_MeshNode tgtNode( thePnt.X(), thePnt.Y(), thePnt.Z() );
     list<const SMDS_MeshNode*> nodes;
     const double precision = 1e-6;
-    myOctreeNode->NodesAround( &tgtNode, &nodes, precision );
+    //myOctreeNode->NodesAround( &tgtNode, &nodes, precision );
 
     double minSqDist = DBL_MAX;
     Bnd_B3d box;