From 6da5b3004c6385c73ff473aedcf1d7a4a25c99c9 Mon Sep 17 00:00:00 2001 From: msv Date: Wed, 18 Oct 2017 19:20:30 +0300 Subject: [PATCH] 0029157: Modeling - suspicious pass-through of case labels in switch statements Suspicious passes through case labels have been resolved either by using Standard_FALLTHROUGH macro or by redesigning the code. --- src/GeomFill/GeomFill_Frenet.cxx | 9 +- src/IntCurveSurface/IntCurveSurface_Inter.gxx | 150 +++++++++--------- src/IntWalk/IntWalk_PWalking.cxx | 1 + 3 files changed, 84 insertions(+), 76 deletions(-) diff --git a/src/GeomFill/GeomFill_Frenet.cxx b/src/GeomFill/GeomFill_Frenet.cxx index d1858ef5b5..fbf64ac628 100644 --- a/src/GeomFill/GeomFill_Frenet.cxx +++ b/src/GeomFill/GeomFill_Frenet.cxx @@ -129,13 +129,14 @@ Handle(GeomFill_TrihedronLaw) GeomFill_Frenet::Copy() const case GeomAbs_Parabola: case GeomAbs_Line: { - // No probleme - isSngl = Standard_False; + // No probleme + isSngl = Standard_False; + break; } default : { - // We have to search singulaties - Init(); + // We have to search singulaties + Init(); } } } diff --git a/src/IntCurveSurface/IntCurveSurface_Inter.gxx b/src/IntCurveSurface/IntCurveSurface_Inter.gxx index e0bad0682a..786473581b 100644 --- a/src/IntCurveSurface/IntCurveSurface_Inter.gxx +++ b/src/IntCurveSurface/IntCurveSurface_Inter.gxx @@ -916,6 +916,7 @@ void IntCurveSurface_Inter::PerformConicSurf(const gp_Lin& Line, GeomAbs_SurfaceType SurfaceType = TheSurfaceTool::GetType(surface); + Standard_Boolean isAnaProcessed = Standard_True; switch(SurfaceType) { case GeomAbs_Plane: { @@ -937,94 +938,99 @@ void IntCurveSurface_Inter::PerformConicSurf(const gp_Lin& Line, } case GeomAbs_Torus: { - IntAna_IntLinTorus intlintorus(Line,TheSurfaceTool::Torus(surface)); - if(intlintorus.IsDone()) { - Standard_Integer nbp = intlintorus.NbPoints(); - Standard_Real fi,theta,w; - for(Standard_Integer i = 1; i<= nbp; i++) { - const gp_Pnt aDebPnt(intlintorus.Value(i)); - (void )aDebPnt; - w = intlintorus.ParamOnLine(i); - intlintorus.ParamOnTorus(i,fi,theta); - AppendPoint(curve,w,surface,fi,theta); - } - break; + IntAna_IntLinTorus intlintorus(Line, TheSurfaceTool::Torus(surface)); + if (intlintorus.IsDone()) { + Standard_Integer nbp = intlintorus.NbPoints(); + Standard_Real fi, theta, w; + for (Standard_Integer i = 1; i <= nbp; i++) { + const gp_Pnt aDebPnt(intlintorus.Value(i)); + (void)aDebPnt; + w = intlintorus.ParamOnLine(i); + intlintorus.ParamOnTorus(i, fi, theta); + AppendPoint(curve, w, surface, fi, theta); + } } - } //-- Si Done retourne False, On passe dans Default !! + else + isAnaProcessed = Standard_False; + break; + } case GeomAbs_Cone: { - //OCC516(apo)-> const Standard_Real correction = 1.E+5*Precision::Angular(); gp_Cone cn = TheSurfaceTool::Cone(surface); - if(Abs(cn.SemiAngle()) < M_PI/2.0 - correction){ - IntAna_IntConicQuad LinCone(Line,cn); - AppendIntAna(curve,surface,LinCone); - break; - }//<-OCC516(apo) - } - default: - { - Standard_Integer nbsu,nbsv; - nbsu = TheSurfaceTool::NbSamplesU(surface,U1,U2); - nbsv = TheSurfaceTool::NbSamplesV(surface,V1,V2); + if(Abs(cn.SemiAngle()) < M_PI/2.0 - correction) { + IntAna_IntConicQuad LinCone(Line, cn); + AppendIntAna(curve, surface, LinCone); + } + else + isAnaProcessed = Standard_False; + break; + } + default: + isAnaProcessed = Standard_False; + } + if (!isAnaProcessed) + { + Standard_Integer nbsu,nbsv; + nbsu = TheSurfaceTool::NbSamplesU(surface,U1,U2); + nbsv = TheSurfaceTool::NbSamplesV(surface,V1,V2); - Standard_Boolean U1inf = Precision::IsInfinite(U1); - Standard_Boolean U2inf = Precision::IsInfinite(U2); - Standard_Boolean V1inf = Precision::IsInfinite(V1); - Standard_Boolean V2inf = Precision::IsInfinite(V2); + Standard_Boolean U1inf = Precision::IsInfinite(U1); + Standard_Boolean U2inf = Precision::IsInfinite(U2); + Standard_Boolean V1inf = Precision::IsInfinite(V1); + Standard_Boolean V2inf = Precision::IsInfinite(V2); - Standard_Real U1new=U1, U2new=U2, V1new=V1, V2new=V2; + Standard_Real U1new=U1, U2new=U2, V1new=V1, V2new=V2; - Standard_Boolean NoIntersection = Standard_False; + Standard_Boolean NoIntersection = Standard_False; - if(U1inf || U2inf || V1inf || V2inf ) { + if(U1inf || U2inf || V1inf || V2inf ) { - if(SurfaceType == GeomAbs_SurfaceOfExtrusion) { + if(SurfaceType == GeomAbs_SurfaceOfExtrusion) { - EstLimForInfExtr(Line, surface, Standard_False, nbsu, - U1inf, U2inf, V1inf, V2inf, - U1new, U2new, V1new, V2new, NoIntersection); - - } - else if(SurfaceType == GeomAbs_SurfaceOfRevolution) { - - EstLimForInfRevl(Line, surface, - U1inf, U2inf, V1inf, V2inf, - U1new, U2new, V1new, V2new, NoIntersection); - - } - else if(SurfaceType == GeomAbs_OffsetSurface) { - - EstLimForInfOffs(Line, surface, nbsu, - U1inf, U2inf, V1inf, V2inf, - U1new, U2new, V1new, V2new, NoIntersection); - } - else { - - EstLimForInfSurf(U1new, U2new, V1new, V2new); - } + EstLimForInfExtr(Line, surface, Standard_False, nbsu, + U1inf, U2inf, V1inf, V2inf, + U1new, U2new, V1new, V2new, NoIntersection); } + else if (SurfaceType == GeomAbs_SurfaceOfRevolution) { + EstLimForInfRevl(Line, surface, + U1inf, U2inf, V1inf, V2inf, + U1new, U2new, V1new, V2new, NoIntersection); - if(NoIntersection) return; - - - // modified by NIZHNY-OFV Mon Aug 20 14:56:47 2001 (60963 begin) - if(nbsu<20) nbsu=20; - if(nbsv<20) nbsv=20; - // modified by NIZHNY-OFV Mon Aug 20 14:57:06 2001 (60963 end) - IntCurveSurface_ThePolyhedron polyhedron(surface,nbsu,nbsv,U1new,V1new,U2new,V2new); - Intf_Tool bndTool; - Bnd_Box boxLine; - bndTool.LinBox(Line,polyhedron.Bounding(),boxLine); - for(Standard_Integer nbseg=1; nbseg<= bndTool.NbSegments(); nbseg++) { - Standard_Real pinf = bndTool.BeginParam(nbseg); - Standard_Real psup = bndTool.EndParam(nbseg); - if((psup - pinf)<1e-10) { pinf-=1e-10; psup+=1e-10; } - IntCurveSurface_ThePolygon polygon(curve, pinf,psup,2); - InternalPerform(curve,polygon,surface,polyhedron,U1new,V1new,U2new,V2new); } + else if (SurfaceType == GeomAbs_OffsetSurface) { + + EstLimForInfOffs(Line, surface, nbsu, + U1inf, U2inf, V1inf, V2inf, + U1new, U2new, V1new, V2new, NoIntersection); + } + else { + + EstLimForInfSurf(U1new, U2new, V1new, V2new); + } + + } + + + if(NoIntersection) return; + + + // modified by NIZHNY-OFV Mon Aug 20 14:56:47 2001 (60963 begin) + if(nbsu<20) nbsu=20; + if(nbsv<20) nbsv=20; + // modified by NIZHNY-OFV Mon Aug 20 14:57:06 2001 (60963 end) + IntCurveSurface_ThePolyhedron polyhedron(surface,nbsu,nbsv,U1new,V1new,U2new,V2new); + Intf_Tool bndTool; + Bnd_Box boxLine; + bndTool.LinBox(Line,polyhedron.Bounding(),boxLine); + for(Standard_Integer nbseg=1; nbseg<= bndTool.NbSegments(); nbseg++) { + Standard_Real pinf = bndTool.BeginParam(nbseg); + Standard_Real psup = bndTool.EndParam(nbseg); + if((psup - pinf)<1e-10) { pinf-=1e-10; psup+=1e-10; } + IntCurveSurface_ThePolygon polygon(curve, pinf,psup,2); + InternalPerform(curve,polygon,surface,polyhedron,U1new,V1new,U2new,V2new); } } } diff --git a/src/IntWalk/IntWalk_PWalking.cxx b/src/IntWalk/IntWalk_PWalking.cxx index 92298b01c3..141e905865 100644 --- a/src/IntWalk/IntWalk_PWalking.cxx +++ b/src/IntWalk/IntWalk_PWalking.cxx @@ -1168,6 +1168,7 @@ void IntWalk_PWalking::Perform(const TColStd_Array1OfReal& ParDep, break; } } + Standard_FALLTHROUGH case IntWalk_OK: case IntWalk_ArretSurPoint://006 {