From: vsr Date: Wed, 17 Jun 2009 10:32:10 +0000 (+0000) Subject: Issue 0020386: EDF 1039 SMESH : FindNodeClosestTo problem X-Git-Tag: V5_1_2rc3~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=794d86805282dbbc2737ab70c06dd6fe5ff87c6f;p=modules%2Fsmesh.git Issue 0020386: EDF 1039 SMESH : FindNodeClosestTo problem --- diff --git a/src/SMESH/SMESH_MeshEditor.cxx b/src/SMESH/SMESH_MeshEditor.cxx index 18ae0388b..8b32e77a6 100644 --- a/src/SMESH/SMESH_MeshEditor.cxx +++ b/src/SMESH/SMESH_MeshEditor.cxx @@ -4614,7 +4614,7 @@ struct SMESH_NodeSearcherImpl: public SMESH_NodeSearcher SMDS_MeshNode tgtNode( thePnt.X(), thePnt.Y(), thePnt.Z() ); list nodes; const double precision = 1e-6; - myOctreeNode->NodesAround( &tgtNode, &nodes, precision ); + //myOctreeNode->NodesAround( &tgtNode, &nodes, precision ); double minSqDist = DBL_MAX; Bnd_B3d box;