]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Mantis issue 0021181. A fix by PKV.
authorjfa <jfa@opencascade.com>
Fri, 18 Feb 2011 10:36:39 +0000 (10:36 +0000)
committerjfa <jfa@opencascade.com>
Fri, 18 Feb 2011 10:36:39 +0000 (10:36 +0000)
src/GEOMAlgo/GEOMAlgo_WireSplitter.cxx

index c90750cbb228c26586195084f6464a797482b683..c33c07a82b4e9aac5c1a17dc89f3d8e5c434a4f2 100755 (executable)
@@ -752,9 +752,13 @@ static
   dA=A1-A2;
   if (dA <= 0.) {
     dA=aTwoPi+dA;
+    //modified by NIZNHY-PKV Thu Feb 17 08:26:39 2011f
+    if (dA <= 1.e-14) {
+      dA=aTwoPi;
+    }
+    //modified by NIZNHY-PKV Thu Feb 17 08:26:42 2011t
   }
   //xx
-  //else if (dA <= 1.e-15) {
   else if (dA <= 1.e-14) {
     dA=aTwoPi;
   }
@@ -803,10 +807,7 @@ static
   BOPTools_Tools2D::CurveOnSurface (anEdge, myFace, aC2D, 
                                     aFirst, aLast, aToler, Standard_True);
   //dt=1.e-7;
-  //modified by NIZNHY-PKV Wed Sep 10 14:06:04 2008f
-  //dt=Tolerance2D(aV, aGAS);
   dt=2.*Tolerance2D(aV, aGAS);
-  //modified by NIZNHY-PKV Wed Sep 10 14:06:07 2008t
   //
   aTX=0.25*(aLast - aFirst);
   if(dt > aTX) {