From fd372378a118c855b8713bbce40f81d0434d187a Mon Sep 17 00:00:00 2001 From: pkv Date: Thu, 2 Apr 2015 14:31:51 +0300 Subject: [PATCH] 0025982: Wrong result obtained by General Fuse operator. New features: class BOPTools_AlgoTools2D - method void BOPTools_AlgoTools2D::AdjustPCurveOnFace (const BRepAdaptor_Surface& aBAS, const Standard_Real aFirst, const Standard_Real aLast, const Handle(Geom2d_Curve)& aC2D, Handle(Geom2d_Curve)& aC2DA) has been added. The method uses the refetence to BRepAdaptor_Surface object as parameter. The fact allows to avoid redundant computations such as BRepTools::UVBounds(....) Changes: class BOPTools_AlgoTools2D - method: void BOPTools_AlgoTools2D::AdjustPCurveOnFace (const TopoDS_Face& aF, const Standard_Real aT1, const Standard_Real aT2, const Handle(Geom2d_Curve)& aC2D, Handle(Geom2d_Curve)& aC2DA) has been changed. The changes are to provide the consistency with I.1 - method: void BOPTools_AlgoTools2D::MakePCurveOnFace (const TopoDS_Face& aF, const Handle(Geom_Curve)& aC3D, const Standard_Real aT1, const Standard_Real aT2, Handle(Geom2d_Curve)& aC2D, Standard_Real& TolReached2d) has been changed. The changes are to provide the consistency with I.1 The restricted surface is used as data for the projection algorithm. Test case for CR25982 --- src/BOPTools/BOPTools.cdl | 3 +- src/BOPTools/BOPTools_AlgoTools2D.cdl | 13 +++- src/BOPTools/BOPTools_AlgoTools2D.cxx | 91 +++++++++++++++++++-------- tests/bugs/modalg_5/bug25982 | 42 +++++++++++++ 4 files changed, 120 insertions(+), 29 deletions(-) create mode 100755 tests/bugs/modalg_5/bug25982 diff --git a/src/BOPTools/BOPTools.cdl b/src/BOPTools/BOPTools.cdl index 5fd71b0b90..addc605e50 100644 --- a/src/BOPTools/BOPTools.cdl +++ b/src/BOPTools/BOPTools.cdl @@ -24,7 +24,8 @@ uses Geom2d, GeomAPI, BRepClass3d, - TopoDS, + TopoDS, + BRepAdaptor, TopTools, IntTools, ProjLib, diff --git a/src/BOPTools/BOPTools_AlgoTools2D.cdl b/src/BOPTools/BOPTools_AlgoTools2D.cdl index e62abb1a50..c88ae7eb4f 100644 --- a/src/BOPTools/BOPTools_AlgoTools2D.cdl +++ b/src/BOPTools/BOPTools_AlgoTools2D.cdl @@ -24,7 +24,7 @@ uses Vertex from TopoDS, Edge from TopoDS, Face from TopoDS, - + Surface from BRepAdaptor, Curve from Geom2d, Curve from Geom, ProjectedCurve from ProjLib, @@ -124,7 +124,16 @@ is --- Adjust P-Curve (3D-curve ) on surface . --- [aT1, aT2] - range to adjust --- - + AdjustPCurveOnFace (myclass; + aF : Surface from BRepAdaptor; + aT1 : Real from Standard; + aT2 : Real from Standard; + aC2D : Curve from Geom2d; + aC2DA : out Curve from Geom2d); + ---Purpose: + --- Adjust P-Curve (3D-curve ) on surface . + --- [aT1, aT2] - range to adjust + --- IntermediatePoint (myclass; aFirst: Real from Standard; aLast : Real from Standard) diff --git a/src/BOPTools/BOPTools_AlgoTools2D.cxx b/src/BOPTools/BOPTools_AlgoTools2D.cxx index 61ad907712..5a3348c8f3 100644 --- a/src/BOPTools/BOPTools_AlgoTools2D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools2D.cxx @@ -284,19 +284,36 @@ void BOPTools_AlgoTools2D::AdjustPCurveOnFace const Handle(Geom2d_Curve)& aC2D, Handle(Geom2d_Curve)& aC2DA) { - Standard_Real first, last; - - first = aC3D -> FirstParameter(); - last = aC3D -> LastParameter(); - - BOPTools_AlgoTools2D::AdjustPCurveOnFace (aF, first, last, aC2D, aC2DA); -} + Standard_Real aT1, aT2; + // + aT1=aC3D->FirstParameter(); + aT2=aC3D->LastParameter(); + // + BOPTools_AlgoTools2D::AdjustPCurveOnFace (aF, aT1, aT2, aC2D, aC2DA); +} //======================================================================= //function : AdjustPCurveOnFace //purpose : //======================================================================= void BOPTools_AlgoTools2D::AdjustPCurveOnFace (const TopoDS_Face& aF, + const Standard_Real aT1, + const Standard_Real aT2, + const Handle(Geom2d_Curve)& aC2D, + Handle(Geom2d_Curve)& aC2DA) +{ + BRepAdaptor_Surface aBAS(aF, Standard_True); + // + BOPTools_AlgoTools2D::AdjustPCurveOnFace(aBAS, aT1, aT2, + aC2D, aC2DA); +} + +//======================================================================= +//function : AdjustPCurveOnFace +//purpose : +//======================================================================= +void BOPTools_AlgoTools2D::AdjustPCurveOnFace + (const BRepAdaptor_Surface& aBAS, const Standard_Real aFirst, const Standard_Real aLast, const Handle(Geom2d_Curve)& aC2D, @@ -306,11 +323,16 @@ void BOPTools_AlgoTools2D::AdjustPCurveOnFace Standard_Real UMin, UMax, VMin, VMax, aT, u2, v2, du, dv, aDelta; Standard_Real aUPeriod; // - aDelta=Precision::PConfusion(); - - BRepAdaptor_Surface aBAS(aF, Standard_False); - - BRepTools::UVBounds(aF, UMin, UMax, VMin, VMax); + const TopoDS_Face& aF=aBAS.Face(); + UMin=aBAS.FirstUParameter(); + UMax=aBAS.LastUParameter(); + VMin=aBAS.FirstVParameter(); + VMax=aBAS.LastVParameter(); + // + //BRepAdaptor_Surface aBAS(aF, Standard_False); + //BRepTools::UVBounds(aF, UMin, UMax, VMin, VMax); + // + aDelta=Precision::PConfusion(); aT =.5*(aFirst+aLast); @@ -324,6 +346,7 @@ void BOPTools_AlgoTools2D::AdjustPCurveOnFace du = 0.; if (aBAS.IsUPeriodic()) { aUPeriod = aBAS.UPeriod(); + // // a. try to clarify u2 using the precision (aDelta) if (fabs(u2-UMin) < aDelta) { @@ -574,28 +597,44 @@ void BOPTools_AlgoTools2D::MakePCurveOnFace (const TopoDS_Face& aF, void BOPTools_AlgoTools2D::MakePCurveOnFace (const TopoDS_Face& aF, const Handle(Geom_Curve)& aC3D, - const Standard_Real aFirst, - const Standard_Real aLast, + const Standard_Real aT1, + const Standard_Real aT2, Handle(Geom2d_Curve)& aC2D, Standard_Real& TolReached2d) { Standard_Real aTolR, aT; + Standard_Real aUMin, aUMax, aVMin, aVMax; Handle(Geom2d_Curve) aC2DA; + Handle(GeomAdaptor_HSurface) aBAHS; + Handle(GeomAdaptor_HCurve) aBAHC; + Handle(Geom_Surface) aS; + // + BRepAdaptor_Surface aBAS(aF, Standard_True); + aUMin=aBAS.FirstUParameter(); + aUMax=aBAS.LastUParameter(); + aVMin=aBAS.FirstVParameter(); + aVMax=aBAS.LastVParameter(); + aS=aBAS.Surface().Surface(); + aS=Handle(Geom_Surface)::DownCast(aS->Transformed(aBAS.Trsf())); + GeomAdaptor_Surface aGAS(aS, aUMin, aUMax, aVMin, aVMax); + // + aBAHS=new GeomAdaptor_HSurface(aGAS); + aBAHC=new GeomAdaptor_HCurve(aC3D, aT1, aT2); // - Handle(Geom_Surface) aS=BRep_Tool::Surface(aF); - GeomAdaptor_Surface aGAS(aS); - Handle(GeomAdaptor_HSurface) aBAHS= - new GeomAdaptor_HSurface(aGAS); - Handle(GeomAdaptor_HCurve) aBAHC = - new GeomAdaptor_HCurve(aC3D, aFirst, aLast); - //when the type of surface is GeomAbs_SurfaceOfRevolution if (aGAS.GetType() == GeomAbs_SurfaceOfRevolution) { - Standard_Real aTR = 1.e-7; + Standard_Real aTR; + // + aTR=Precision::Confusion();//1.e-7; + if (TolReached2d > aTR) { + aTR=TolReached2d; + } + // ProjLib_ProjectedCurve aProj1(aBAHS, aBAHC, aTR); BOPTools_AlgoTools2D::MakePCurveOfType(aProj1, aC2D); aTolR = aProj1.GetTolerance(); - } else { + } + else { ProjLib_ProjectedCurve aProjCurv(aBAHS, aBAHC);// 1 BOPTools_AlgoTools2D::MakePCurveOfType(aProjCurv, aC2D); aTolR=aProjCurv.GetTolerance(); @@ -614,14 +653,14 @@ void BOPTools_AlgoTools2D::MakePCurveOnFace } } TolReached2d=aTolR; - - BOPTools_AlgoTools2D::AdjustPCurveOnFace (aF, aFirst, aLast, + BOPTools_AlgoTools2D::AdjustPCurveOnFace (aBAS, aT1, aT2, aC2D, aC2DA); + // aC2D=aC2DA; // // compute the appropriate tolerance for the edge if (IntTools_Tools::ComputeTolerance - (aC3D, aC2D, aS, aFirst, aLast, aTolR, aT)) { + (aC3D, aC2D, aS, aT1, aT2, aTolR, aT)) { if (aTolR > TolReached2d) { TolReached2d = aTolR; } diff --git a/tests/bugs/modalg_5/bug25982 b/tests/bugs/modalg_5/bug25982 new file mode 100755 index 0000000000..9f46cd4c0c --- /dev/null +++ b/tests/bugs/modalg_5/bug25982 @@ -0,0 +1,42 @@ +puts "============" +puts "OCC25982" +puts "============" +puts "" +############################### +## Wrong result obtained by General Fuse operator. +############################### + +restore [locate_data_file bug25982_human_head_3.brep] b1 + +tcopy b1 b2 +tmirror b2 0 0 0 1 0 0 +explode b1 f +explode b2 f +copy b1_4 b1 +copy b2_4 b2 + +bclearobjects +bcleartools +baddobjects b1 +baddtools b2 + +bfillds +bbuild result + +set square 306.285 + +set nbshapes_expected " +Number of shapes in shape + VERTEX : 6 + EDGE : 11 + WIRE : 4 + FACE : 2 + SHELL : 0 + SOLID : 0 + COMPSOLID : 0 + COMPOUND : 1 + SHAPE : 24 +" +checknbshapes result ${nbshapes_expected} 1 "Result obtained by General Fuse operator" + +set 3dviewer 1