mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
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.
This commit is contained in:
parent
56c62737ee
commit
6da5b3004c
@ -131,6 +131,7 @@ Handle(GeomFill_TrihedronLaw) GeomFill_Frenet::Copy() const
|
|||||||
{
|
{
|
||||||
// No probleme
|
// No probleme
|
||||||
isSngl = Standard_False;
|
isSngl = Standard_False;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
default :
|
default :
|
||||||
{
|
{
|
||||||
|
@ -916,6 +916,7 @@ void IntCurveSurface_Inter::PerformConicSurf(const gp_Lin& Line,
|
|||||||
|
|
||||||
|
|
||||||
GeomAbs_SurfaceType SurfaceType = TheSurfaceTool::GetType(surface);
|
GeomAbs_SurfaceType SurfaceType = TheSurfaceTool::GetType(surface);
|
||||||
|
Standard_Boolean isAnaProcessed = Standard_True;
|
||||||
switch(SurfaceType) {
|
switch(SurfaceType) {
|
||||||
case GeomAbs_Plane:
|
case GeomAbs_Plane:
|
||||||
{
|
{
|
||||||
@ -937,32 +938,38 @@ void IntCurveSurface_Inter::PerformConicSurf(const gp_Lin& Line,
|
|||||||
}
|
}
|
||||||
case GeomAbs_Torus:
|
case GeomAbs_Torus:
|
||||||
{
|
{
|
||||||
IntAna_IntLinTorus intlintorus(Line,TheSurfaceTool::Torus(surface));
|
IntAna_IntLinTorus intlintorus(Line, TheSurfaceTool::Torus(surface));
|
||||||
if(intlintorus.IsDone()) {
|
if (intlintorus.IsDone()) {
|
||||||
Standard_Integer nbp = intlintorus.NbPoints();
|
Standard_Integer nbp = intlintorus.NbPoints();
|
||||||
Standard_Real fi,theta,w;
|
Standard_Real fi, theta, w;
|
||||||
for(Standard_Integer i = 1; i<= nbp; i++) {
|
for (Standard_Integer i = 1; i <= nbp; i++) {
|
||||||
const gp_Pnt aDebPnt(intlintorus.Value(i));
|
const gp_Pnt aDebPnt(intlintorus.Value(i));
|
||||||
(void )aDebPnt;
|
(void)aDebPnt;
|
||||||
w = intlintorus.ParamOnLine(i);
|
w = intlintorus.ParamOnLine(i);
|
||||||
intlintorus.ParamOnTorus(i,fi,theta);
|
intlintorus.ParamOnTorus(i, fi, theta);
|
||||||
AppendPoint(curve,w,surface,fi,theta);
|
AppendPoint(curve, w, surface, fi, theta);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
isAnaProcessed = Standard_False;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} //-- Si Done retourne False, On passe dans Default !!
|
|
||||||
case GeomAbs_Cone:
|
case GeomAbs_Cone:
|
||||||
{
|
{
|
||||||
//OCC516(apo)->
|
|
||||||
const Standard_Real correction = 1.E+5*Precision::Angular();
|
const Standard_Real correction = 1.E+5*Precision::Angular();
|
||||||
gp_Cone cn = TheSurfaceTool::Cone(surface);
|
gp_Cone cn = TheSurfaceTool::Cone(surface);
|
||||||
if(Abs(cn.SemiAngle()) < M_PI/2.0 - correction){
|
if(Abs(cn.SemiAngle()) < M_PI/2.0 - correction) {
|
||||||
IntAna_IntConicQuad LinCone(Line,cn);
|
IntAna_IntConicQuad LinCone(Line, cn);
|
||||||
AppendIntAna(curve,surface,LinCone);
|
AppendIntAna(curve, surface, LinCone);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
isAnaProcessed = Standard_False;
|
||||||
break;
|
break;
|
||||||
}//<-OCC516(apo)
|
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
isAnaProcessed = Standard_False;
|
||||||
|
}
|
||||||
|
if (!isAnaProcessed)
|
||||||
{
|
{
|
||||||
Standard_Integer nbsu,nbsv;
|
Standard_Integer nbsu,nbsv;
|
||||||
nbsu = TheSurfaceTool::NbSamplesU(surface,U1,U2);
|
nbsu = TheSurfaceTool::NbSamplesU(surface,U1,U2);
|
||||||
@ -986,14 +993,14 @@ void IntCurveSurface_Inter::PerformConicSurf(const gp_Lin& Line,
|
|||||||
U1new, U2new, V1new, V2new, NoIntersection);
|
U1new, U2new, V1new, V2new, NoIntersection);
|
||||||
|
|
||||||
}
|
}
|
||||||
else if(SurfaceType == GeomAbs_SurfaceOfRevolution) {
|
else if (SurfaceType == GeomAbs_SurfaceOfRevolution) {
|
||||||
|
|
||||||
EstLimForInfRevl(Line, surface,
|
EstLimForInfRevl(Line, surface,
|
||||||
U1inf, U2inf, V1inf, V2inf,
|
U1inf, U2inf, V1inf, V2inf,
|
||||||
U1new, U2new, V1new, V2new, NoIntersection);
|
U1new, U2new, V1new, V2new, NoIntersection);
|
||||||
|
|
||||||
}
|
}
|
||||||
else if(SurfaceType == GeomAbs_OffsetSurface) {
|
else if (SurfaceType == GeomAbs_OffsetSurface) {
|
||||||
|
|
||||||
EstLimForInfOffs(Line, surface, nbsu,
|
EstLimForInfOffs(Line, surface, nbsu,
|
||||||
U1inf, U2inf, V1inf, V2inf,
|
U1inf, U2inf, V1inf, V2inf,
|
||||||
@ -1026,7 +1033,6 @@ void IntCurveSurface_Inter::PerformConicSurf(const gp_Lin& Line,
|
|||||||
InternalPerform(curve,polygon,surface,polyhedron,U1new,V1new,U2new,V2new);
|
InternalPerform(curve,polygon,surface,polyhedron,U1new,V1new,U2new,V2new);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : PerformConicSurf
|
//function : PerformConicSurf
|
||||||
|
@ -1168,6 +1168,7 @@ void IntWalk_PWalking::Perform(const TColStd_Array1OfReal& ParDep,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Standard_FALLTHROUGH
|
||||||
case IntWalk_OK:
|
case IntWalk_OK:
|
||||||
case IntWalk_ArretSurPoint://006
|
case IntWalk_ArretSurPoint://006
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user