From 84e5bff3865d721e88c0b19f954ccd0eab5d49fc Mon Sep 17 00:00:00 2001 From: jgv Date: Sat, 12 May 2012 15:28:11 +0400 Subject: [PATCH] 0023139: BRepFilletAPI_MakeFillet algorithm builds edges with wrong first and last parameters: out of pcurve --- src/ChFi3d/ChFi3d_Builder_C1.cxx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/ChFi3d/ChFi3d_Builder_C1.cxx b/src/ChFi3d/ChFi3d_Builder_C1.cxx index f0dbe8dded..399355ec65 100755 --- a/src/ChFi3d/ChFi3d_Builder_C1.cxx +++ b/src/ChFi3d/ChFi3d_Builder_C1.cxx @@ -378,6 +378,27 @@ static Standard_Boolean Update(Handle(Adaptor3d_HSurface)& face, pared = ponc1.Parameter(); parltg = ponc2.Parameter(); if ((parltg > f) && (parltg < l)) { + ////modified by jgv, 10.05.2012 for the bug 23139//// + Handle(Geom2d_Curve) PConF = fi.PCurveOnFace(); + if (!PConF.IsNull()) + { + Handle(Geom2d_TrimmedCurve) aTrCurve = Handle(Geom2d_TrimmedCurve)::DownCast(PConF); + if (!aTrCurve.IsNull()) + PConF = aTrCurve->BasisCurve(); + if (isfirst) + { + Standard_Real fpar = PConF->FirstParameter(); + if (parltg < fpar) + parltg = fpar; + } + else + { + Standard_Real lpar = PConF->LastParameter(); + if (parltg > lpar) + parltg = lpar; + } + } + ///////////////////////////////////////////////////// fi.SetParameter(parltg,isfirst); cp.SetArc(cp.Tolerance(),cp.Arc(),pared,cp.TransitionOnArc()); return Standard_True;