]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Bug 0020014: EDF 833 GEOM : Regression from 3.2.9 with GetInPlace.
authorjfa <jfa@opencascade.com>
Fri, 31 Oct 2008 12:16:22 +0000 (12:16 +0000)
committerjfa <jfa@opencascade.com>
Fri, 31 Oct 2008 12:16:22 +0000 (12:16 +0000)
src/GEOMImpl/GEOMImpl_IShapesOperations.cxx

index f0b83cd556605a5a3ecc08e2bba865d02e6adca6..a3f2353dceb5375602c794214df687a0bd789246 100644 (file)
@@ -2927,6 +2927,10 @@ Handle(GEOM_Object) GEOMImpl_IShapesOperations::GetInPlace (Handle(GEOM_Object)
   Tol_2D = dl_l * ( min_l * min_l) * ( 2. + dl_l);
   Tol_3D = dl_l * ( min_l * min_l * min_l ) * ( 3. + (3 * dl_l) + (dl_l * dl_l) );
 
+  if (Tol_1D < Precision::Confusion()) Tol_1D = Precision::Confusion();
+  if (Tol_2D < Precision::Confusion()) Tol_2D = Precision::Confusion();
+  if (Tol_3D < Precision::Confusion()) Tol_3D = Precision::Confusion();
+
   Tol_Mass = Tol_3D;
   if      ( iType == TopAbs_EDGE ) Tol_Mass = Tol_1D;
   else if ( iType == TopAbs_FACE ) Tol_Mass = Tol_2D;