From 5768cd55b7686590a2b0c7580e7a5c65ca4769bb Mon Sep 17 00:00:00 2001 From: aba Date: Wed, 17 Oct 2012 10:38:08 +0400 Subject: [PATCH] 0023140: Suspicious if Condition that is always true was replaced on assigning a variable 'Tol' to Precision::Confusion. --- src/BRepFill/BRepFill_TrimEdgeTool.cxx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/BRepFill/BRepFill_TrimEdgeTool.cxx b/src/BRepFill/BRepFill_TrimEdgeTool.cxx index 48afa9fd6e..4cbee1d460 100755 --- a/src/BRepFill/BRepFill_TrimEdgeTool.cxx +++ b/src/BRepFill/BRepFill_TrimEdgeTool.cxx @@ -174,16 +174,12 @@ static void EvalParameters(const Geom2dAdaptor_Curve& Bis, TColgp_SequenceOfPnt& Params) { Geom2dInt_GInter Intersector; - Standard_Real Tol = Precision::Intersection(); + Standard_Real Tol = Precision::Confusion(); // Standard_Real TolC = 1.e-9; Geom2dAdaptor_Curve CBis(Bis); Geom2dAdaptor_Curve CAC (AC); - if(AC.GetType() != GeomAbs_Circle || AC.GetType() != GeomAbs_Line) { - Tol *= 100.; - } - //Intersector = Geom2dInt_GInter(CBis, CAC, TolC, Tol); Intersector = Geom2dInt_GInter(CAC, CBis, Tol, Tol);