From 3f54cc41a8e308b0be09fd9a0670355bdb30f536 Mon Sep 17 00:00:00 2001 From: akaftasev Date: Tue, 12 May 2020 12:21:59 +0300 Subject: [PATCH] 0027909: Modeling Algorithms - Exception during offset computation Added function ChFi3d::IsTangentFaces for more accurate definition of connection type. Test cases have been changed according to the current behavior. --- src/BRepOffset/BRepOffset_Analyse.cxx | 41 ++++++---- src/BRepOffset/BRepOffset_MakeOffset.cxx | 2 +- src/ChFi3d/ChFi3d.cxx | 95 +++++++++++++++++++++++- src/ChFi3d/ChFi3d.hxx | 9 ++- src/ChFi3d/ChFi3d_Builder_0.cxx | 90 +--------------------- src/ChFi3d/ChFi3d_Builder_0.hxx | 5 -- src/ChFi3d/ChFi3d_Builder_1.cxx | 8 +- src/ChFi3d/ChFi3d_Builder_2.cxx | 6 +- src/ChFi3d/ChFi3d_Builder_C1.cxx | 14 ++-- src/ChFi3d/ChFi3d_Builder_CnCrn.cxx | 3 +- tests/bugs/modalg_7/bug27908 | 12 +-- tests/bugs/modalg_7/bug27909 | 12 +-- tests/bugs/modalg_7/bug27910 | 8 +- tests/bugs/modalg_7/bug27911 | 12 +-- tests/bugs/modalg_7/bug27912 | 15 ++-- tests/bugs/modalg_7/bug27913 | 20 +++++ tests/offset/with_intersect_20/L3 | 3 - tests/offset/with_intersect_20/L9 | 3 - tests/offset/with_intersect_20/M9 | 1 - tests/offset/with_intersect_80/J9 | 3 + tests/offset/with_intersect_80/K1 | 2 - tests/offset/with_intersect_80/K8 | 3 - tests/offset/with_intersect_80/L1 | 3 - tests/offset/with_intersect_80/L4 | 2 - tests/offset/with_intersect_80/L6 | 6 +- tests/offset/with_intersect_80/L8 | 2 - tests/offset/with_intersect_80/M1 | 2 - tests/offset/with_intersect_80/M3 | 3 - tests/offset/with_intersect_80/M5 | 3 - tests/offset/with_intersect_80/M6 | 2 - tests/offset/with_intersect_80/M8 | 3 - tests/offset/with_intersect_80/M9 | 1 - tests/offset/with_intersect_80/N1 | 3 - tests/perf/modalg/bug26443_1 | 2 + tests/perf/modalg/bug26443_2 | 2 + 35 files changed, 212 insertions(+), 189 deletions(-) create mode 100644 tests/bugs/modalg_7/bug27913 diff --git a/src/BRepOffset/BRepOffset_Analyse.cxx b/src/BRepOffset/BRepOffset_Analyse.cxx index 1eeb367979..20bfba9a86 100644 --- a/src/BRepOffset/BRepOffset_Analyse.cxx +++ b/src/BRepOffset/BRepOffset_Analyse.cxx @@ -89,28 +89,37 @@ static void EdgeAnalyse(const TopoDS_Edge& E, const Standard_Real SinTol, BRepOffset_ListOfInterval& LI) { - Standard_Real f,l; BRep_Tool::Range(E, F1, f, l); BRepOffset_Interval I; I.First(f); I.Last(l); - // - // Tangent if the regularity is at least G1. - if (BRep_Tool::HasContinuity(E,F1,F2)) { - if (BRep_Tool::Continuity(E,F1,F2) > GeomAbs_C0) { - I.Type(ChFiDS_Tangential); - LI.Append(I); - return; - } - } - // - ChFiDS_TypeOfConcavity aType = ChFi3d::DefineConnectType(E, F1, F2, - SinTol, Standard_False); - if(aType != ChFiDS_Tangential) + // + BRepAdaptor_Surface aBAsurf1(F1, Standard_False); + GeomAbs_SurfaceType aSurfType1 = aBAsurf1.GetType(); + + BRepAdaptor_Surface aBAsurf2(F2, Standard_False); + GeomAbs_SurfaceType aSurfType2 = aBAsurf2.GetType(); + + Standard_Boolean isTwoPlanes = (aSurfType1 == GeomAbs_Plane && aSurfType2 == GeomAbs_Plane); + + ChFiDS_TypeOfConcavity ConnectType = ChFiDS_Other; + + if (isTwoPlanes) //then use only strong condition { - aType = ChFi3d::DefineConnectType(E, F1, F2, SinTol, Standard_True); + if (BRep_Tool::Continuity(E,F1,F2) > GeomAbs_C0) + ConnectType = ChFiDS_Tangential; + else + ConnectType = ChFi3d::DefineConnectType(E, F1, F2, SinTol, Standard_False); } - I.Type(aType); + else + { + if (ChFi3d::IsTangentFaces(E, F1, F2)) //weak condition + ConnectType = ChFiDS_Tangential; + else + ConnectType = ChFi3d::DefineConnectType(E, F1, F2, SinTol, Standard_False); + } + + I.Type(ConnectType); LI.Append(I); } diff --git a/src/BRepOffset/BRepOffset_MakeOffset.cxx b/src/BRepOffset/BRepOffset_MakeOffset.cxx index 201f0b7bae..89ad5c0113 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset.cxx @@ -4098,7 +4098,7 @@ void TrimEdge(TopoDS_Edge& NE, gp_Pnt thePoint = BRep_Tool::Pnt(V); GeomAPI_ProjectPointOnCurve Projector(thePoint, theCurve); if (Projector.NbPoints() == 0) - throw Standard_ConstructionError("BRepOffset_MakeOffset::TrimEdge no projection"); + return; U = Projector.LowerDistanceParameter(); } if (U < UMin) { diff --git a/src/ChFi3d/ChFi3d.cxx b/src/ChFi3d/ChFi3d.cxx index b5720c504f..a557965e24 100644 --- a/src/ChFi3d/ChFi3d.cxx +++ b/src/ChFi3d/ChFi3d.cxx @@ -31,6 +31,11 @@ #include #include #include +#include +#include +#include +#include + static void Correct2dPoint(const TopoDS_Face& theF, gp_Pnt2d& theP2d); // @@ -101,7 +106,6 @@ ChFiDS_TypeOfConcavity ChFi3d::DefineConnectType(const TopoDS_Edge& E, gp_Vec ProVec = DN1^DN2; Standard_Real NormProVec = ProVec.Magnitude(); - if (NormProVec < SinTol) { // plane if (DN1.Dot(DN2) > 0) { @@ -131,6 +135,95 @@ ChFiDS_TypeOfConcavity ChFi3d::DefineConnectType(const TopoDS_Edge& E, } } +//======================================================================= +//function : IsTangentFaces +//purpose : +//======================================================================= +Standard_Boolean ChFi3d::IsTangentFaces(const TopoDS_Edge& theEdge, + const TopoDS_Face& theFace1, + const TopoDS_Face& theFace2, + const GeomAbs_Shape Order) +{ + if (Order == GeomAbs_G1 && BRep_Tool::Continuity(theEdge, theFace1, theFace2) != GeomAbs_C0) + return Standard_True; + + Standard_Real TolC0 = Max(0.001, 1.5*BRep_Tool::Tolerance(theEdge)); + + Standard_Real aFirst; + Standard_Real aLast; + + // Obtaining of pcurves of edge on two faces. + const Handle(Geom2d_Curve) aC2d1 = BRep_Tool::CurveOnSurface + (theEdge, theFace1, aFirst, aLast); + //For the case of seam edge + TopoDS_Edge EE = theEdge; + if (theFace1.IsSame(theFace2)) + EE.Reverse(); + const Handle(Geom2d_Curve) aC2d2 = BRep_Tool::CurveOnSurface + (EE, theFace2, aFirst, aLast); + if (aC2d1.IsNull() || aC2d2.IsNull()) + return Standard_False; + + // Obtaining of two surfaces from adjacent faces. + Handle(Geom_Surface) aSurf1 = BRep_Tool::Surface(theFace1); + Handle(Geom_Surface) aSurf2 = BRep_Tool::Surface(theFace2); + + if (aSurf1.IsNull() || aSurf2.IsNull()) + return Standard_False; + + // Computation of the number of samples on the edge. + BRepAdaptor_Surface aBAS1(theFace1); + BRepAdaptor_Surface aBAS2(theFace2); + Handle(BRepAdaptor_HSurface) aBAHS1 = new BRepAdaptor_HSurface(aBAS1); + Handle(BRepAdaptor_HSurface) aBAHS2 = new BRepAdaptor_HSurface(aBAS2); + Handle(BRepTopAdaptor_TopolTool) aTool1 = new BRepTopAdaptor_TopolTool(aBAHS1); + Handle(BRepTopAdaptor_TopolTool) aTool2 = new BRepTopAdaptor_TopolTool(aBAHS2); + Standard_Integer aNbSamples1 = aTool1->NbSamples(); + Standard_Integer aNbSamples2 = aTool2->NbSamples(); + Standard_Integer aNbSamples = Max(aNbSamples1, aNbSamples2); + + // Computation of the continuity. + Standard_Real aPar; + Standard_Real aDelta = (aLast - aFirst) / (aNbSamples - 1); + Standard_Integer i, nbNotDone = 0; + + for (i = 1, aPar = aFirst; i <= aNbSamples; i++, aPar += aDelta) { + if (i == aNbSamples) aPar = aLast; + + LocalAnalysis_SurfaceContinuity aCont(aC2d1, aC2d2, aPar, + aSurf1, aSurf2, Order, + 0.001, TolC0, 0.1, 0.1, 0.1); + if (!aCont.IsDone()) + { + nbNotDone++; + continue; + } + + if (Order == GeomAbs_G1) + { + if (!aCont.IsG1()) + return Standard_False; + } + else if (!aCont.IsG2()) + return Standard_False; + } + + if (nbNotDone == aNbSamples) + return Standard_False; + + //Compare normals of tangent faces in the middle point + Standard_Real MidPar = (aFirst + aLast) / 2.; + gp_Pnt2d uv1 = aC2d1->Value(MidPar); + gp_Pnt2d uv2 = aC2d2->Value(MidPar); + gp_Dir normal1, normal2; + TopOpeBRepTool_TOOL::Nt(uv1, theFace1, normal1); + TopOpeBRepTool_TOOL::Nt(uv2, theFace2, normal2); + Standard_Real dot = normal1.Dot(normal2); + if (dot < 0.) + return Standard_False; + return Standard_True; +} + //======================================================================= //function : ConcaveSide //purpose : calculate the concave face at the neighborhood of the border of diff --git a/src/ChFi3d/ChFi3d.hxx b/src/ChFi3d/ChFi3d.hxx index 4bf70d650a..38c523ff47 100644 --- a/src/ChFi3d/ChFi3d.hxx +++ b/src/ChFi3d/ChFi3d.hxx @@ -25,6 +25,7 @@ #include #include #include +#include class BRepAdaptor_Surface; class TopoDS_Edge; class TopoDS_Face; @@ -47,7 +48,13 @@ public: const TopoDS_Face& F2, const Standard_Real SinTol, const Standard_Boolean CorrectPoint); - + + //! Returns true if theEdge between theFace1 and theFace2 is tangent + Standard_EXPORT static Standard_Boolean IsTangentFaces (const TopoDS_Edge& theEdge, + const TopoDS_Face& theFace1, + const TopoDS_Face& theFace2, + const GeomAbs_Shape Order = GeomAbs_G1); + //! Returns Reversed in Or1 and(or) Or2 if //! the concave edge defined by the interior of faces F1 and F2, //! in the neighbourhood of their boundary E is of the edge opposite to the diff --git a/src/ChFi3d/ChFi3d_Builder_0.cxx b/src/ChFi3d/ChFi3d_Builder_0.cxx index a86bef8161..de2ff457de 100644 --- a/src/ChFi3d/ChFi3d_Builder_0.cxx +++ b/src/ChFi3d/ChFi3d_Builder_0.cxx @@ -4594,93 +4594,6 @@ void ChFi3d_ChercheBordsLibres(const ChFiDS_Map & myVEMap, } } -Standard_Boolean ChFi3d_isTangentFaces(const TopoDS_Edge &theEdge, - const TopoDS_Face &theFace1, - const TopoDS_Face &theFace2, - const GeomAbs_Shape Order) -{ - if (Order == GeomAbs_G1 && - BRep_Tool::Continuity( theEdge, theFace1, theFace2 ) != GeomAbs_C0) - return Standard_True; - - Standard_Real TolC0 = Max(0.001, 1.5*BRep_Tool::Tolerance(theEdge)); - - Standard_Real aFirst; - Standard_Real aLast; - -// Obtaining of pcurves of edge on two faces. - const Handle(Geom2d_Curve) aC2d1 = BRep_Tool::CurveOnSurface - (theEdge, theFace1, aFirst, aLast); - //For the case of seam edge - TopoDS_Edge EE = theEdge; - if (theFace1.IsSame(theFace2)) - EE.Reverse(); - const Handle(Geom2d_Curve) aC2d2 = BRep_Tool::CurveOnSurface - (EE, theFace2, aFirst, aLast); - if (aC2d1.IsNull() || aC2d2.IsNull()) - return Standard_False; - -// Obtaining of two surfaces from adjacent faces. - Handle(Geom_Surface) aSurf1 = BRep_Tool::Surface(theFace1); - Handle(Geom_Surface) aSurf2 = BRep_Tool::Surface(theFace2); - - if (aSurf1.IsNull() || aSurf2.IsNull()) - return Standard_False; - -// Computation of the number of samples on the edge. - BRepAdaptor_Surface aBAS1(theFace1); - BRepAdaptor_Surface aBAS2(theFace2); - Handle(BRepAdaptor_HSurface) aBAHS1 = new BRepAdaptor_HSurface(aBAS1); - Handle(BRepAdaptor_HSurface) aBAHS2 = new BRepAdaptor_HSurface(aBAS2); - Handle(BRepTopAdaptor_TopolTool) aTool1 = new BRepTopAdaptor_TopolTool(aBAHS1); - Handle(BRepTopAdaptor_TopolTool) aTool2 = new BRepTopAdaptor_TopolTool(aBAHS2); - Standard_Integer aNbSamples1 = aTool1->NbSamples(); - Standard_Integer aNbSamples2 = aTool2->NbSamples(); - Standard_Integer aNbSamples = Max(aNbSamples1, aNbSamples2); - - -// Computation of the continuity. - Standard_Real aPar; - Standard_Real aDelta = (aLast - aFirst)/(aNbSamples - 1); - Standard_Integer i, nbNotDone = 0; - - for (i = 1, aPar = aFirst; i <= aNbSamples; i++, aPar += aDelta) { - if (i == aNbSamples) aPar = aLast; - - LocalAnalysis_SurfaceContinuity aCont(aC2d1, aC2d2, aPar, - aSurf1, aSurf2, Order, - 0.001, TolC0, 0.1, 0.1, 0.1); - if (!aCont.IsDone()) - { - nbNotDone++; - continue; - } - - if (Order == GeomAbs_G1) - { - if (!aCont.IsG1()) - return Standard_False; - } - else if (!aCont.IsG2()) - return Standard_False; - } - - if (nbNotDone == aNbSamples) - return Standard_False; - - //Compare normals of tangent faces in the middle point - Standard_Real MidPar = (aFirst + aLast)/2.; - gp_Pnt2d uv1 = aC2d1->Value(MidPar); - gp_Pnt2d uv2 = aC2d2->Value(MidPar); - gp_Dir normal1, normal2; - TopOpeBRepTool_TOOL::Nt( uv1, theFace1, normal1 ); - TopOpeBRepTool_TOOL::Nt( uv2, theFace2, normal2 ); - Standard_Real dot = normal1.Dot(normal2); - if (dot < 0.) - return Standard_False; - return Standard_True; -} - //======================================================================= //function : NbNotDegeneratedEdges //purpose : calculate the number of non-degenerated edges of Map VEMap(Vtx) @@ -4698,6 +4611,7 @@ Standard_Integer ChFi3d_NbNotDegeneratedEdges (const TopoDS_Vertex& Vtx, return nba; } + //======================================================================= //function : NbSharpEdges //purpose : calculate the number of sharp edges of Map VEMap(Vtx) @@ -4716,7 +4630,7 @@ Standard_Integer ChFi3d_NbSharpEdges (const TopoDS_Vertex& Vtx, { TopoDS_Face F1, F2; ChFi3d_conexfaces(cur, F1, F2, EFMap); - if (!F2.IsNull() && ChFi3d_isTangentFaces(cur, F1, F2, GeomAbs_G2)) + if (!F2.IsNull() && ChFi3d::IsTangentFaces(cur, F1, F2, GeomAbs_G2)) nba--; } } diff --git a/src/ChFi3d/ChFi3d_Builder_0.hxx b/src/ChFi3d/ChFi3d_Builder_0.hxx index 315b4ade36..14a6fa669b 100644 --- a/src/ChFi3d/ChFi3d_Builder_0.hxx +++ b/src/ChFi3d/ChFi3d_Builder_0.hxx @@ -552,11 +552,6 @@ void ChFi3d_ChercheBordsLibres(const ChFiDS_Map & myVEMap, TopoDS_Edge & edgelibre1, TopoDS_Edge & edgelibre2); -Standard_Boolean ChFi3d_isTangentFaces(const TopoDS_Edge &theEdge, - const TopoDS_Face &theFace1, - const TopoDS_Face &theFace2, - const GeomAbs_Shape Order = GeomAbs_G1); - Standard_Integer ChFi3d_NbNotDegeneratedEdges (const TopoDS_Vertex& Vtx, const ChFiDS_Map& VEMap); Standard_Integer ChFi3d_NumberOfEdges(const TopoDS_Vertex& Vtx, diff --git a/src/ChFi3d/ChFi3d_Builder_1.cxx b/src/ChFi3d/ChFi3d_Builder_1.cxx index a1b00c5132..dc71bc39ef 100644 --- a/src/ChFi3d/ChFi3d_Builder_1.cxx +++ b/src/ChFi3d/ChFi3d_Builder_1.cxx @@ -591,7 +591,7 @@ Standard_Boolean ChFi3d_Builder::FaceTangency(const TopoDS_Edge& E0, if(Nbf < 2) return Standard_False; // Modified by Sergey KHROMOV - Fri Dec 21 17:44:19 2001 Begin //if (BRep_Tool::Continuity(E1,F[0],F[1]) != GeomAbs_C0) { - if (ChFi3d_isTangentFaces(E1,F[0],F[1])) { + if (ChFi3d::IsTangentFaces(E1,F[0],F[1])) { // Modified by Sergey KHROMOV - Fri Dec 21 17:44:21 2001 End return Standard_False; } @@ -610,7 +610,7 @@ Standard_Boolean ChFi3d_Builder::FaceTangency(const TopoDS_Edge& E0, if(Nbf < 2) return Standard_False; // Modified by Sergey KHROMOV - Tue Dec 18 18:10:40 2001 Begin // if (BRep_Tool::Continuity(Ec,F[0],F[1]) < GeomAbs_G1) { - if (!ChFi3d_isTangentFaces(Ec,F[0],F[1])) { + if (!ChFi3d::IsTangentFaces(Ec,F[0],F[1])) { // Modified by Sergey KHROMOV - Tue Dec 18 18:10:41 2001 End return Standard_False; } @@ -736,7 +736,7 @@ void ChFi3d_Builder::PerformExtremity (const Handle(ChFiDS_Spine)& Spine) continue; TopoDS_Face F1, F2; ChFi3d_conexfaces(anEdge, F1, F2, myEFMap); - if (!F2.IsNull() && ChFi3d_isTangentFaces(anEdge, F1, F2, GeomAbs_G2)) //smooth edge + if (!F2.IsNull() && ChFi3d::IsTangentFaces(anEdge, F1, F2, GeomAbs_G2)) //smooth edge { if (!F1.IsSame(F2)) NbG1Connections++; @@ -853,7 +853,7 @@ Standard_Boolean ChFi3d_Builder::PerformElement(const Handle(ChFiDS_Spine)& Spin if(ff1.IsNull() || ff2.IsNull()) return 0; // Modified by Sergey KHROMOV - Fri Dec 21 17:46:22 2001 End //if(BRep_Tool::Continuity(Ec,ff1,ff2) != GeomAbs_C0) return 0; - if (ChFi3d_isTangentFaces(Ec,ff1,ff2)) return 0; + if (ChFi3d::IsTangentFaces(Ec,ff1,ff2)) return 0; // Modified by Sergey KHROMOV - Fri Dec 21 17:46:24 2001 Begin TopoDS_Face FirstFace = ff1; diff --git a/src/ChFi3d/ChFi3d_Builder_2.cxx b/src/ChFi3d/ChFi3d_Builder_2.cxx index ee86f4d190..083113283a 100644 --- a/src/ChFi3d/ChFi3d_Builder_2.cxx +++ b/src/ChFi3d/ChFi3d_Builder_2.cxx @@ -250,7 +250,7 @@ static Standard_Boolean BonVoisin(const gp_Pnt& Point, // Modified by Sergey KHROMOV - Fri Dec 21 17:12:48 2001 Begin // Standard_Boolean istg = // BRep_Tool::Continuity(ecur,ff,F) != GeomAbs_C0; - Standard_Boolean istg = ChFi3d_isTangentFaces(ecur,ff,F); + Standard_Boolean istg = ChFi3d::IsTangentFaces(ecur,ff,F); // Modified by Sergey KHROMOV - Fri Dec 21 17:12:51 2001 End if((!issame || (issame && isreallyclosed)) && istg) { found = 1; @@ -456,7 +456,7 @@ Standard_Boolean IsG1(const ChFiDS_Map& TheMap, FVoi = TopoDS::Face(It.Value()); // Modified by Sergey KHROMOV - Fri Dec 21 17:09:32 2001 Begin // if (BRep_Tool::Continuity(E,FRef,FVoi) != GeomAbs_C0) { - if (ChFi3d_isTangentFaces(E,FRef,FVoi)) { + if (ChFi3d::IsTangentFaces(E,FRef,FVoi)) { // Modified by Sergey KHROMOV - Fri Dec 21 17:09:33 2001 End return Standard_True; } @@ -476,7 +476,7 @@ Standard_Boolean IsG1(const ChFiDS_Map& TheMap, FVoi = FRef; // Modified by Sergey KHROMOV - Fri Dec 21 17:15:12 2001 Begin // if (BRep_Tool::Continuity(E,FRef,FRef) >= GeomAbs_G1) { - if (ChFi3d_isTangentFaces(E,FRef,FRef)) { + if (ChFi3d::IsTangentFaces(E,FRef,FRef)) { // Modified by Sergey KHROMOV - Fri Dec 21 17:15:16 2001 End return Standard_True; } diff --git a/src/ChFi3d/ChFi3d_Builder_C1.cxx b/src/ChFi3d/ChFi3d_Builder_C1.cxx index 369d4dcd7a..85fce5cff6 100644 --- a/src/ChFi3d/ChFi3d_Builder_C1.cxx +++ b/src/ChFi3d/ChFi3d_Builder_C1.cxx @@ -334,7 +334,7 @@ static Standard_Boolean IntersUpdateOnSame(Handle(GeomAdaptor_HSurface)& HGs, if ( Update(HBs,Hc3df,FIop,CPop,FprolUV,isFirst,c3dU) ) return Standard_True; - if (!ChFi3d_isTangentFaces(Eprol,Fprol,Fop)) + if (!ChFi3d::IsTangentFaces(Eprol,Fprol,Fop)) return Standard_False; Handle(Geom2d_Curve) gpcprol = BRep_Tool::CurveOnSurface(Eprol,Fprol,uf,ul); @@ -1639,14 +1639,14 @@ void ChFi3d_Builder::PerformIntersectionAtEnd(const Standard_Integer Index) ChFi3d_edge_common_faces(myEFMap(Eadj1),Fga,Fdr); // Modified by Sergey KHROMOV - Fri Dec 21 17:57:32 2001 Begin // reg1=BRep_Tool::Continuity(Eadj1,Fga,Fdr)!=GeomAbs_C0; - reg1 = ChFi3d_isTangentFaces(Eadj1,Fga,Fdr); + reg1 = ChFi3d::IsTangentFaces(Eadj1,Fga,Fdr); // Modified by Sergey KHROMOV - Fri Dec 21 17:57:33 2001 End if (F2.IsSame(facecouture)) Eadj2=edgecouture; else ChFi3d_cherche_element(Vtx,EdgeSpine,F2,Eadj2,Vbid1); ChFi3d_edge_common_faces(myEFMap(Eadj2),Fga,Fdr); // Modified by Sergey KHROMOV - Fri Dec 21 17:58:22 2001 Begin // reg2=BRep_Tool::Continuity(Eadj2,Fga,Fdr)!=GeomAbs_C0; - reg2 = ChFi3d_isTangentFaces(Eadj2,Fga,Fdr); + reg2 = ChFi3d::IsTangentFaces(Eadj2,Fga,Fdr); // Modified by Sergey KHROMOV - Fri Dec 21 17:58:24 2001 End // two faces common to the edge are found @@ -2067,9 +2067,9 @@ void ChFi3d_Builder::PerformIntersectionAtEnd(const Standard_Integer Index) else if (nbarete==5) { //pro15368 // Modified by Sergey KHROMOV - Fri Dec 21 18:07:43 2001 End - Standard_Boolean isTangent0 = ChFi3d_isTangentFaces(Edge[0],F1,Face[0]); - Standard_Boolean isTangent1 = ChFi3d_isTangentFaces(Edge[1],Face[0],Face[1]); - Standard_Boolean isTangent2 = ChFi3d_isTangentFaces(Edge[2],Face[1],Face[2]); + Standard_Boolean isTangent0 = ChFi3d::IsTangentFaces(Edge[0],F1,Face[0]); + Standard_Boolean isTangent1 = ChFi3d::IsTangentFaces(Edge[1],Face[0],Face[1]); + Standard_Boolean isTangent2 = ChFi3d::IsTangentFaces(Edge[2],Face[1],Face[2]); if ((isTangent0 || isTangent2) && isTangent1) { // GeomAbs_Shape cont0,cont1,cont2; // cont0=BRep_Tool::Continuity(Edge[0],F1,Face[0]); @@ -3970,7 +3970,7 @@ void ChFi3d_Builder::IntersectMoreCorner(const Standard_Integer Index) inters = Update(HBs,Hc3df,FiopArc,CPopArc,p2dbout,isfirst,wop); // Modified by Sergey KHROMOV - Fri Dec 21 18:08:27 2001 Begin // if(!inters && BRep_Tool::Continuity(Arcprol,Fv,Fop) != GeomAbs_C0){ - if(!inters && ChFi3d_isTangentFaces(Arcprol,Fv,Fop)){ + if(!inters && ChFi3d::IsTangentFaces(Arcprol,Fv,Fop)){ // Modified by Sergey KHROMOV - Fri Dec 21 18:08:29 2001 End // Arcprol is an edge of tangency, ultimate adjustment by an extrema curve/curve is attempted. Standard_Real ff,ll; diff --git a/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx b/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx index 65a2de26ee..e8087c1cd7 100644 --- a/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx +++ b/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx @@ -144,6 +144,7 @@ #include #include #include +#include // performances #ifdef OCCT_DEBUG @@ -1261,7 +1262,7 @@ void ChFi3d_Builder::PerformMoreThreeCorner(const Standard_Integer Jndex, // Modified by Sergey KHROMOV - Fri Dec 21 18:11:02 2001 Begin // regul.SetValue(ic,BRep_Tool::Continuity(TopoDS::Edge(Evive.Value(ic)),F1,F2) // !=GeomAbs_C0); - regul.SetValue(ic, ChFi3d_isTangentFaces(TopoDS::Edge(Evive.Value(ic)),F1,F2)); + regul.SetValue(ic, ChFi3d::IsTangentFaces(TopoDS::Edge(Evive.Value(ic)),F1,F2)); // Modified by Sergey KHROMOV - Fri Dec 21 18:11:07 2001 End } } diff --git a/tests/bugs/modalg_7/bug27908 b/tests/bugs/modalg_7/bug27908 index f3c760c3d0..7edd32e7a4 100644 --- a/tests/bugs/modalg_7/bug27908 +++ b/tests/bugs/modalg_7/bug27908 @@ -1,7 +1,3 @@ -puts "TODO OCC27908 ALL: An exception was caught" -puts "TODO OCC27908 ALL: \\*\\* Exception \\*\\*.*" -puts "TODO OCC27908 ALL: TEST INCOMPLETE" - puts "========" puts "OCC27908" puts "========" @@ -14,5 +10,11 @@ restore [locate_data_file bug27908.brep] s offsetparameter 1e-7 p i offsetload s 10 - offsetperform result + +unifysamedom result_unif result + +checkshape result +checkprops result -s 178976 +checknbshapes result -ref [lrange [nbshapes s] 8 19] +checkview -display result_unif -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/modalg_7/bug27909 b/tests/bugs/modalg_7/bug27909 index f676829d3f..e0014d488b 100644 --- a/tests/bugs/modalg_7/bug27909 +++ b/tests/bugs/modalg_7/bug27909 @@ -1,7 +1,3 @@ -puts "TODO OCC27908 ALL: An exception was caught" -puts "TODO OCC27908 ALL: \\*\\* Exception \\*\\*.*" -puts "TODO OCC27908 ALL: TEST INCOMPLETE" - puts "========" puts "OCC27909" puts "========" @@ -14,5 +10,11 @@ restore [locate_data_file bug27909.brep] s offsetparameter 1e-7 p i offsetload s 10 - offsetperform result + +unifysamedom result_unif result + +checkshape result +checkprops result -s 368904 +checknbshapes result -ref [lrange [nbshapes s] 8 19] +checkview -display result_unif -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/modalg_7/bug27910 b/tests/bugs/modalg_7/bug27910 index eb343943d0..788bbead4d 100644 --- a/tests/bugs/modalg_7/bug27910 +++ b/tests/bugs/modalg_7/bug27910 @@ -1,4 +1,3 @@ - puts "========" puts "OCC27910" puts "========" @@ -13,5 +12,10 @@ offsetparameter 1e-7 p i offsetload s 10 offsetperform result -checkshape result +unifysamedom result_unif result + +checkshape result +checkprops result -s 386834 +checknbshapes result -ref [lrange [nbshapes s] 8 19] +checkview -display result_unif -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/modalg_7/bug27911 b/tests/bugs/modalg_7/bug27911 index 1eb00c4564..5ebf14e770 100644 --- a/tests/bugs/modalg_7/bug27911 +++ b/tests/bugs/modalg_7/bug27911 @@ -1,7 +1,3 @@ -puts "TODO OCC27911 ALL: An exception was caught" -puts "TODO OCC27911 ALL: \\*\\* Exception \\*\\*.*" -puts "TODO OCC27911 ALL: TEST INCOMPLETE" - puts "========" puts "OCC27911" puts "========" @@ -14,5 +10,11 @@ restore [locate_data_file bug27911.brep] s offsetparameter 1e-7 p i offsetload s 10 - offsetperform result + +unifysamedom result_unif result + +checkshape result +checkprops result -s 109689 +checknbshapes result -ref [lrange [nbshapes s] 8 19] +checkview -display result_unif -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/modalg_7/bug27912 b/tests/bugs/modalg_7/bug27912 index 12c5b802b4..48124b11f4 100644 --- a/tests/bugs/modalg_7/bug27912 +++ b/tests/bugs/modalg_7/bug27912 @@ -1,5 +1,3 @@ -puts "TODO OCC27912 ALL: Error : The area of result shape is" - puts "========" puts "OCC27912" puts "========" @@ -9,10 +7,15 @@ puts "" ####################################### restore [locate_data_file bug27912.brep] s - -offsetparameter 1e-7 p i + + offsetparameter 1e-7 p i offsetload s 10 - offsetperform result -checkprops result -s 0 \ No newline at end of file +unifysamedom result_unif result + +checkshape result +checkprops result -s 1.29197e+006 +checknbshapes result -ref [lrange [nbshapes s] 8 19] +checkview -display result_unif -2d -path ${imagedir}/${test_image}.png + diff --git a/tests/bugs/modalg_7/bug27913 b/tests/bugs/modalg_7/bug27913 new file mode 100644 index 0000000000..aca74b528f --- /dev/null +++ b/tests/bugs/modalg_7/bug27913 @@ -0,0 +1,20 @@ +puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" +puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" + + +puts "==============================================================" +puts "0027913: Sharing between edges was lost after offset operation" +puts "==============================================================" +puts "" + +restore [locate_data_file bug27913.brep] s +offsetparameter 1e-7 p i +offsetload s 10 +offsetperform result + +unifysamedom result_unif result + +checkshape result +checkview -display result_unif -2d -path ${imagedir}/${test_image}.png + +checknbshapes result -ref [lrange [nbshapes s] 8 19] \ No newline at end of file diff --git a/tests/offset/with_intersect_20/L3 b/tests/offset/with_intersect_20/L3 index 65de2da342..9e27a55b57 100644 --- a/tests/offset/with_intersect_20/L3 +++ b/tests/offset/with_intersect_20/L3 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All: Error : is WRONG because number of" -puts "TODO OCC26578 All: Faulty shapes in variables faulty_1 to faulty_" - restore [locate_data_file bug26663_test_offset_L3.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_20/L9 b/tests/offset/with_intersect_20/L9 index ffbaded355..11472fd863 100644 --- a/tests/offset/with_intersect_20/L9 +++ b/tests/offset/with_intersect_20/L9 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All: Error : is WRONG because number of" -puts "TODO OCC26578 All: Faulty shapes in variables faulty_1 to faulty_" - restore [locate_data_file bug26663_test_offset_L9.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_20/M9 b/tests/offset/with_intersect_20/M9 index ebb4a89315..bfb7cdb418 100644 --- a/tests/offset/with_intersect_20/M9 +++ b/tests/offset/with_intersect_20/M9 @@ -1,4 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_M9.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/J9 b/tests/offset/with_intersect_80/J9 index bee5a06b09..55246c9a3b 100644 --- a/tests/offset/with_intersect_80/J9 +++ b/tests/offset/with_intersect_80/J9 @@ -1,3 +1,6 @@ +puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" +puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_J9.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} +checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/K1 b/tests/offset/with_intersect_80/K1 index 6425bfb4c3..98781bb6c7 100644 --- a/tests/offset/with_intersect_80/K1 +++ b/tests/offset/with_intersect_80/K1 @@ -1,5 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_K1.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/K8 b/tests/offset/with_intersect_80/K8 index c7b86dc3dd..c6a7d62243 100644 --- a/tests/offset/with_intersect_80/K8 +++ b/tests/offset/with_intersect_80/K8 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All:An exception was caught" -puts "TODO OCC26578 All:\\*\\* Exception \\*\\*" -puts "TODO OCC26578 All:TEST INCOMPLETE" restore [locate_data_file bug26663_test_offset_K8.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/L1 b/tests/offset/with_intersect_80/L1 index 78f0261d11..ca3136ad82 100644 --- a/tests/offset/with_intersect_80/L1 +++ b/tests/offset/with_intersect_80/L1 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All:An exception was caught" -puts "TODO OCC26578 All:\\*\\* Exception \\*\\*" -puts "TODO OCC26578 All:TEST INCOMPLETE" restore [locate_data_file bug26663_test_offset_L1.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/L4 b/tests/offset/with_intersect_80/L4 index f62dda018a..d8d4efb6b7 100644 --- a/tests/offset/with_intersect_80/L4 +++ b/tests/offset/with_intersect_80/L4 @@ -1,5 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_L4.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/L6 b/tests/offset/with_intersect_80/L6 index 96047e17a5..182c84dd64 100644 --- a/tests/offset/with_intersect_80/L6 +++ b/tests/offset/with_intersect_80/L6 @@ -1,6 +1,6 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" -puts "REQUIRED All: Faulty shapes in variables faulty_1 to faulty" +#puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" +#puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" +#puts "REQUIRED All: Faulty shapes in variables faulty_1 to faulty" restore [locate_data_file bug26663_test_offset_L6.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/L8 b/tests/offset/with_intersect_80/L8 index 2b103ac8ca..c5672c4a93 100644 --- a/tests/offset/with_intersect_80/L8 +++ b/tests/offset/with_intersect_80/L8 @@ -1,5 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_L8.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/M1 b/tests/offset/with_intersect_80/M1 index d6139fb686..ad7da29895 100644 --- a/tests/offset/with_intersect_80/M1 +++ b/tests/offset/with_intersect_80/M1 @@ -1,5 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_M1.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/M3 b/tests/offset/with_intersect_80/M3 index 16fd5ec6d7..01ec4c6054 100644 --- a/tests/offset/with_intersect_80/M3 +++ b/tests/offset/with_intersect_80/M3 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All:An exception was caught" -puts "TODO OCC26578 All:\\*\\* Exception \\*\\*" -puts "TODO OCC26578 All:TEST INCOMPLETE" restore [locate_data_file bug26663_test_offset_M3.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/M5 b/tests/offset/with_intersect_80/M5 index 6451d395ba..29eeda657b 100644 --- a/tests/offset/with_intersect_80/M5 +++ b/tests/offset/with_intersect_80/M5 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All:An exception was caught" -puts "TODO OCC26578 All:\\*\\* Exception \\*\\*" -puts "TODO OCC26578 All:TEST INCOMPLETE" restore [locate_data_file bug26663_test_offset_M5.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/M6 b/tests/offset/with_intersect_80/M6 index ac0f0e3670..7c775c2df6 100644 --- a/tests/offset/with_intersect_80/M6 +++ b/tests/offset/with_intersect_80/M6 @@ -1,5 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of EDGE entities in shape" -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_M6.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/M8 b/tests/offset/with_intersect_80/M8 index ae0cb003f7..eb6770da80 100644 --- a/tests/offset/with_intersect_80/M8 +++ b/tests/offset/with_intersect_80/M8 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All:An exception was caught" -puts "TODO OCC26578 All:\\*\\* Exception \\*\\*" -puts "TODO OCC26578 All:TEST INCOMPLETE" restore [locate_data_file bug26663_test_offset_M8.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/M9 b/tests/offset/with_intersect_80/M9 index ebb4a89315..bfb7cdb418 100644 --- a/tests/offset/with_intersect_80/M9 +++ b/tests/offset/with_intersect_80/M9 @@ -1,4 +1,3 @@ -puts "TODO OCC26577 All: Error : is WRONG because number of SHELL entities in shape" restore [locate_data_file bug26663_test_offset_M9.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/offset/with_intersect_80/N1 b/tests/offset/with_intersect_80/N1 index 6ed19fbd38..f893d57cc1 100644 --- a/tests/offset/with_intersect_80/N1 +++ b/tests/offset/with_intersect_80/N1 @@ -1,6 +1,3 @@ -puts "TODO OCC26578 All: Error : is WRONG because number of" -puts "TODO OCC26578 All: Faulty shapes in variables faulty_1 to faulty_" - restore [locate_data_file bug26663_test_offset_N1.brep] s OFFSETSHAPE ${off_param} {} ${calcul} ${type} checknbshapes result -ref [lrange [nbshapes s] 8 19] diff --git a/tests/perf/modalg/bug26443_1 b/tests/perf/modalg/bug26443_1 index 975b74607d..66b34a3365 100644 --- a/tests/perf/modalg/bug26443_1 +++ b/tests/perf/modalg/bug26443_1 @@ -15,4 +15,6 @@ offsetshape r a -2 dchrono h stop counter offsetshape fit +checkshape r +checknbshapes r -ref [lrange [nbshapes a] 8 19] checkview -screenshot -2d -path ${imagedir}/${test_image}.png diff --git a/tests/perf/modalg/bug26443_2 b/tests/perf/modalg/bug26443_2 index d98d576fd2..0e61afcd14 100644 --- a/tests/perf/modalg/bug26443_2 +++ b/tests/perf/modalg/bug26443_2 @@ -15,4 +15,6 @@ offsetshape r a -2 dchrono h stop counter offsetshape fit +checkshape r +checknbshapes r -ref [lrange [nbshapes a] 8 19] checkview -screenshot -2d -path ${imagedir}/${test_image}.png