]> SALOME platform Git repositories - plugins/blsurfplugin.git/commitdiff
Salome HOME
#17262 EDF 19862 - no conform mesh
authoreap <eap@opencascade.com>
Thu, 6 Feb 2020 15:07:55 +0000 (18:07 +0300)
committereap <eap@opencascade.com>
Thu, 6 Feb 2020 15:07:55 +0000 (18:07 +0300)
Increase tolerance used to merge nodes on pre-meshed edges

src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx

index af32973357447b70326c189f5553a14492505109..39f5603f4f3bc2e1565e72536477bd4343915e95 100644 (file)
@@ -1546,7 +1546,7 @@ namespace
       //double tol = (( u2node.rbegin()->first - u2node.begin()->first ) / 20.) / u2node.size();
       Standard_Real f,l;
       BRep_Tool::Range( TopoDS::Edge( shape ), f,l );
-      double tol = (( l - f ) / 20.) / u2node.size();
+      double tol = (( l - f ) / 10.) / u2node.size(); // 10. - adjusted for #17262
 
       std::multimap< double, const SMDS_MeshNode* >::iterator un2, un1;
       for ( un2 = u2node.begin(), un1 = un2++; un2 != u2node.end(); un1 = un2++ )