mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
0024640: Broken logic of check of variable for zero in IntCurvesFace_Intersector constructor
The check is fixed to avoid FPE division by zero
This commit is contained in:
parent
ecba6de3cc
commit
7eb732b683
@ -95,7 +95,7 @@ IntCurvesFace_Intersector::IntCurvesFace_Intersector(const TopoDS_Face& Face,
|
|||||||
Standard_Boolean bFlag;
|
Standard_Boolean bFlag;
|
||||||
//
|
//
|
||||||
{
|
{
|
||||||
Standard_Real dU, dV, dA, dB, aR, aTresh;
|
Standard_Real dU, dV, dA, dB, aTresh;
|
||||||
bFlag=Standard_True;
|
bFlag=Standard_True;
|
||||||
//
|
//
|
||||||
aTresh=100.;
|
aTresh=100.;
|
||||||
@ -108,15 +108,9 @@ IntCurvesFace_Intersector::IntCurvesFace_Intersector(const TopoDS_Face& Face,
|
|||||||
dB=dU;
|
dB=dU;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
aR=dA/dB;
|
if (dB < Precision::PConfusion() || dA > dB * aTresh) {
|
||||||
if (dB<Precision::PConfusion()) {
|
|
||||||
bFlag=!bFlag;
|
bFlag=!bFlag;
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
if (aR>aTresh) {
|
|
||||||
bFlag=!bFlag;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
if (bFlag) {
|
if (bFlag) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user