mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0033567: Modeling Data - GeomLib_IsPlanarSurface raises exception SIGFPE Arithmetic Exception in Release mode
Add protection against zero-division
This commit is contained in:
parent
b896c6f4af
commit
58393b24b6
@ -50,6 +50,10 @@ static Standard_Boolean Controle(const TColgp_Array1OfPnt& Poles,
|
|||||||
Standard_Real umin, umax, vmin, vmax;
|
Standard_Real umin, umax, vmin, vmax;
|
||||||
S->Bounds(umin, umax, vmin, vmax);
|
S->Bounds(umin, umax, vmin, vmax);
|
||||||
S->D1((umin + umax) / 2, (vmin + vmax) / 2, P, DU, DV);
|
S->D1((umin + umax) / 2, (vmin + vmax) / 2, P, DU, DV);
|
||||||
|
|
||||||
|
if (DU.SquareMagnitude() > gp::Resolution() &&
|
||||||
|
DV.SquareMagnitude() > gp::Resolution())
|
||||||
|
{
|
||||||
// On prend DX le plus proche possible de DU
|
// On prend DX le plus proche possible de DU
|
||||||
gp_Dir du(DU);
|
gp_Dir du(DU);
|
||||||
Standard_Real Angle1 = du.Angle(DX);
|
Standard_Real Angle1 = du.Angle(DX);
|
||||||
@ -67,6 +71,7 @@ static Standard_Boolean Controle(const TColgp_Array1OfPnt& Poles,
|
|||||||
Plan.SetLocation(Bary);
|
Plan.SetLocation(Bary);
|
||||||
IsPlan = Standard_True;
|
IsPlan = Standard_True;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return IsPlan;
|
return IsPlan;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
11
tests/bugs/moddata_3/bug33567
Normal file
11
tests/bugs/moddata_3/bug33567
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
puts "==========================================================="
|
||||||
|
puts "0033567: Modeling Data - GeomLib_IsPlanarSurface raises SIGFPE in Release mode"
|
||||||
|
puts "==========================================================="
|
||||||
|
|
||||||
|
puts "REQUIRED All: Conversion failed"
|
||||||
|
|
||||||
|
pload MODELING
|
||||||
|
|
||||||
|
restore [locate_data_file bug33567.brep] a
|
||||||
|
mksurface s a
|
||||||
|
tocanon r s 0.0005
|
Loading…
x
Reference in New Issue
Block a user