diff --git a/src/Extrema/Extrema_ExtPElS.cxx b/src/Extrema/Extrema_ExtPElS.cxx index 59d5bfe1c5..8257b554c0 100644 --- a/src/Extrema/Extrema_ExtPElS.cxx +++ b/src/Extrema/Extrema_ExtPElS.cxx @@ -313,9 +313,10 @@ void Extrema_ExtPElS::Perform(const gp_Pnt& P, const gp_Torus& S, const Standard_Real Tol) { + const Standard_Real tol2 = Tol*Tol; myDone = Standard_False; myNbExt = 0; - + // Projection of P in plane XOY ... gp_Ax3 Pos = S.Position(); gp_Pnt O = Pos.Location(); @@ -325,7 +326,7 @@ void Extrema_ExtPElS::Perform(const gp_Pnt& P, // Calculation of extrema ... gp_Vec OPp (O,Pp); Standard_Real R2 = OPp.SquareMagnitude(); - if (R2 < Tol * Tol) { return; } + if (R2 < tol2) { return; } gp_Vec myZ = Pos.XDirection()^Pos.YDirection(); Standard_Real U1 = gp_Vec(Pos.XDirection()).AngleWithRef(OPp,myZ); @@ -338,8 +339,8 @@ void Extrema_ExtPElS::Perform(const gp_Pnt& P, gp_Pnt O1 = O.Translated(OO1); gp_Pnt O2 = O.Translated(OO2); - if(O1.SquareDistance(P) < Tol) { return; } - if(O2.SquareDistance(P) < Tol) { return; } + if(O1.SquareDistance(P) < tol2) { return; } + if(O2.SquareDistance(P) < tol2) { return; } Standard_Real V1 = OPp.AngleWithRef(gp_Vec(O1,P),OPp.Crossed(OZ)); if (V1 > -ExtPElS_MyEps && V1 < ExtPElS_MyEps) { V1 = 0.; } diff --git a/tests/bugs/modalg_6/bug28692 b/tests/bugs/modalg_6/bug28692 new file mode 100644 index 0000000000..17eccde093 --- /dev/null +++ b/tests/bugs/modalg_6/bug28692 @@ -0,0 +1,16 @@ +puts "========" +puts "OCC28692" +puts "========" +puts "" +#################################################################################### +## Projection failed (projponf) +#################################################################################### + +restore [locate_data_file bug28692_shapes.brep] bi3 +point p -0.0153 0 0.017 +set dist -1 +regexp {proj dist = ([-0-9.+eE]+)} [projponf bi3 p] full dist +if { $dist < 0 || $dist > 1.e-7 } { + puts "Error : Projection failed " +} +