From: eap Date: Wed, 21 Nov 2018 14:15:54 +0000 (+0300) Subject: [GPUSPHGUI] #511: Spheric2 with dynamic boundaries - Mesh offset failed X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2d62a74205a940a0dc7e3a1534fe2e6939f3da40;p=modules%2Fsmesh.git [GPUSPHGUI] #511: Spheric2 with dynamic boundaries - Mesh offset failed --- diff --git a/src/SMESHUtils/SMESH_Offset.cxx b/src/SMESHUtils/SMESH_Offset.cxx index 564a09f69..8c1743cfa 100644 --- a/src/SMESHUtils/SMESH_Offset.cxx +++ b/src/SMESHUtils/SMESH_Offset.cxx @@ -2747,8 +2747,9 @@ SMDS_Mesh* SMESH_MeshAlgos::MakeOffset( SMDS_ElemIteratorPtr theFaceIt, normals[i].SetCoord( 0,0,0 ); // TODO find norm by neighbors } - const double tol = 1e-3 * Sqrt( minNodeDist ); const double sign = ( theOffset < 0 ? -1 : +1 ); + const double tol = Min( 1e-3 * Sqrt( minNodeDist ), + 1e-2 * theOffset * sign ); // translate new nodes by normal to input faces gp_XYZ newXYZ;