From bbecd75e48654b191888bc15fc2ced32e65b65d9 Mon Sep 17 00:00:00 2001 From: eap Date: Wed, 11 Apr 2018 19:53:55 +0300 Subject: [PATCH] Regression of SALOME_TESTS/Grids/smesh/mesh_BLSURF_02/C6 --- src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx b/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx index 1f7e0ea..2fbbd87 100644 --- a/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx +++ b/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx @@ -2568,9 +2568,9 @@ bool BLSURFPlugin_BLSURF::compute(SMESH_Mesh& aMesh, nodes[iv] = NULL; if ( tag > 0 && tag <= pmap.Extent() ) { TopoDS_Vertex v = TopoDS::Vertex(pmap(tag)); - double tol = BRep_Tool::Tolerance( v ); - gp_Pnt p = BRep_Tool::Pnt( v ); - if ( p.IsEqual( gp_Pnt( xyz[0], xyz[1], xyz[2]), 2*tol)) + double tol = BRep_Tool::Tolerance( v ); + gp_Pnt p = BRep_Tool::Pnt( v ); + if ( p.IsEqual( gp_Pnt( xyz[0], xyz[1], xyz[2]), 1e3*tol)) xyz[0] = p.X(), xyz[1] = p.Y(), xyz[2] = p.Z(); else tag = 0; // enforced or attracted vertex -- 2.39.2