From 6303cb120535fd00a3fead9314e28f745a6d498c Mon Sep 17 00:00:00 2001 From: pkv Date: Thu, 18 Sep 2014 14:50:37 +0400 Subject: [PATCH] 0025228: Wrong result of General Fuse operation for an edge and a face. Changes: class BOPTools_AlgoTools3D method: void BOPTools_AlgoTools3D::DoSplitSEAMOnFace (const TopoDS_Edge& aSplit, const TopoDS_Face& aF) The treatment of seam edges for the periodic surfaces has been changed. Test case for issue CR25228 --- src/BOPTools/BOPTools_AlgoTools3D.cxx | 111 +++++++++++++++----------- tests/bugs/modalg_5/bug25228 | 34 ++++++++ 2 files changed, 100 insertions(+), 45 deletions(-) create mode 100755 tests/bugs/modalg_5/bug25228 diff --git a/src/BOPTools/BOPTools_AlgoTools3D.cxx b/src/BOPTools/BOPTools_AlgoTools3D.cxx index 1231b73f99..5dceb7d945 100644 --- a/src/BOPTools/BOPTools_AlgoTools3D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools3D.cxx @@ -14,22 +14,8 @@ #include -#include -#include - -#include -#include -#include -#include -#include - -#include -#include - -#include -#include -#include -#include +#include +#include #include #include @@ -38,6 +24,7 @@ #include #include #include +#include #include #include @@ -47,18 +34,21 @@ #include #include #include +#include #include +#include +#include +#include -#include +#include +#include +#include +#include +#include -#include - -#include -#include -#include -#include -#include +#include +#include #include #include #include @@ -66,12 +56,24 @@ #include #include #include -#include -#include + +#include +#include +#include + +#include +#include + +#include +#include + +#include +#include + +#include #include -#include -#include -#include + +#include static void Add(const TopoDS_Shape& aS, BOPCol_IndexedMapOfShape& myShapes, @@ -89,6 +91,7 @@ void BOPTools_AlgoTools3D::DoSplitSEAMOnFace (const TopoDS_Edge& aSplit, Standard_Boolean bIsUPeriodic, bIsVPeriodic, bIsLeft; Standard_Real aTol, a, b, anUPeriod, anVPeriod, aT, anU, dU, anU1; Standard_Real aScPr, anV, dV, anV1; + Standard_Real aUmin, aUmax, aVmin, aVmax; gp_Pnt2d aP2D; gp_Vec2d aVec2D; Handle(Geom2d_Curve) aTmpC1, aTmpC2; @@ -104,6 +107,9 @@ void BOPTools_AlgoTools3D::DoSplitSEAMOnFace (const TopoDS_Edge& aSplit, aTol=BRep_Tool::Tolerance(aSp); // aS=BRep_Tool::Surface(aF); + // + aS->Bounds(aUmin, aUmax, aVmin, aVmax); + // bIsUPeriodic=aS->IsUPeriodic(); bIsVPeriodic=aS->IsVPeriodic(); // @@ -112,37 +118,53 @@ void BOPTools_AlgoTools3D::DoSplitSEAMOnFace (const TopoDS_Edge& aSplit, // if (!bIsUPeriodic && !bIsVPeriodic) { Standard_Boolean bIsUClosed, bIsVClosed; - Standard_Real aUmin = 0., aUmax = 0., aVmin = 0., aVmax = 0.; Handle(Geom_BSplineSurface) aBS; Handle(Geom_BezierSurface) aBZ; + Handle(Geom_RectangularTrimmedSurface) aRTS; // bIsUClosed=Standard_False; bIsVClosed=Standard_False; aBS=Handle(Geom_BSplineSurface)::DownCast(aS); aBZ=Handle(Geom_BezierSurface) ::DownCast(aS); + aRTS=Handle(Geom_RectangularTrimmedSurface)::DownCast(aS); // if (!aBS.IsNull()) { bIsUClosed=aBS->IsUClosed(); bIsVClosed=aBS->IsVClosed(); - aBS->Bounds(aUmin, aUmax, aVmin, aVmax); } else if (!aBZ.IsNull()) { bIsUClosed=aBZ->IsUClosed(); bIsVClosed=aBZ->IsVClosed(); - aBZ->Bounds(aUmin, aUmax, aVmin, aVmax); } - if (!bIsUClosed && !bIsVClosed) { - return; + else if (!aRTS.IsNull()) { + Handle(Geom_Surface) aSB; + // + aSB=aRTS->BasisSurface(); + bIsUPeriodic=aSB->IsUPeriodic(); + bIsVPeriodic=aSB->IsVPeriodic(); + // + if (!(bIsUPeriodic || bIsVPeriodic)) { + return; + } + anUPeriod = bIsUPeriodic ? aSB->UPeriod() : 0.; + anVPeriod = bIsVPeriodic ? aSB->VPeriod() : 0.; } // - if (bIsUClosed) { - anUPeriod=aUmax-aUmin; - } - if (bIsVClosed) { - anVPeriod=aVmax-aVmin; + if (aRTS.IsNull()) { + if (!bIsUClosed && !bIsVClosed) { + return; + } + // + if (bIsUClosed) { + anUPeriod=aUmax-aUmin; + } + if (bIsVClosed) { + anVPeriod=aVmax-aVmin; + } } } // + //--------------------------------------------------- C2D1=BRep_Tool::CurveOnSurface(aSp, aF, a, b); // aT=BOPTools_AlgoTools2D::IntermediatePoint(a, b); @@ -160,22 +182,22 @@ void BOPTools_AlgoTools3D::DoSplitSEAMOnFace (const TopoDS_Edge& aSplit, dV = aGAS.VResolution(aTol); // if (anUPeriod > 0.){ - if (fabs (anU) < dU) { + if (fabs (anU-aUmin) < dU) { bIsLeft=Standard_True; anU1=anU+anUPeriod; } - else if (fabs (anU-anUPeriod) < dU) { + else if (fabs (anU-aUmax) < dU) { bIsLeft=Standard_False; anU1=anU-anUPeriod; } } // if (anVPeriod > 0.) { - if (fabs (anV) < dV) { + if (fabs (anV-aVmin) < dV) { bIsLeft=Standard_True; anV1=anV+anVPeriod; } - else if (fabs (anV-anVPeriod) < dV) { + else if (fabs (anV-aVmax) < dV) { bIsLeft=Standard_False; anV1=anV-anVPeriod; } @@ -429,8 +451,7 @@ void BOPTools_AlgoTools3D::PointNearEdge (const TopoDS_Edge& aE, } } if( aETol > 1.e-5 || aFTol > 1.e-5 ) { - //if( aETol > 1.e-5 && aFTol > 1.e-5 ) { - //pkv/103/D7 + // if(aTS!=GeomAbs_Sphere) { gp_Vec2d transVec( aDP ); transVal = aDt2D + aETol + aFTol; diff --git a/tests/bugs/modalg_5/bug25228 b/tests/bugs/modalg_5/bug25228 new file mode 100755 index 0000000000..6a459b77a6 --- /dev/null +++ b/tests/bugs/modalg_5/bug25228 @@ -0,0 +1,34 @@ +puts "================" +puts "OCC25228" +puts "================" +puts "" +####################################################################### +# Wrong result of General Fuse operation for an edge and a face. +####################################################################### + +restore [locate_data_file bug25228_qs.brep] qs + +explode qs +copy qs_1 b1 +copy qs_2 b2 + +bclearobjects +bcleartools +baddobjects b1 b2 + +bfillds +bbuild result + +set square 227.765 + +set nb_v_good 2 +set nb_e_good 3 +set nb_w_good 1 +set nb_f_good 1 +set nb_sh_good 0 +set nb_sol_good 0 +set nb_compsol_good 0 +set nb_compound_good 1 +set nb_shape_good 8 + +set 3dviewer 1