1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0031887: IntTools_Context::IsPointInFace always return TRUE

If aDist >= aTol, bIn is never updated to false, and the function
always returns TRUE.
This commit is contained in:
Xu Zhongxing 2020-10-29 19:33:27 +08:00 committed by bugmaster
parent a8b9d7eb27
commit 2b7fd8c81c

View File

@ -723,14 +723,14 @@ Standard_Boolean IntTools_Context::IsPointInFace
const TopoDS_Face& aF,
const Standard_Real aTol)
{
Standard_Boolean bIn;
Standard_Boolean bIn = Standard_False;
Standard_Real aDist;
//
GeomAPI_ProjectPointOnSurf& aProjector=ProjPS(aF);
aProjector.Perform(aP);
//
bIn = aProjector.IsDone();
if (bIn) {
Standard_Boolean bDone = aProjector.IsDone();
if (bDone) {
aDist = aProjector.LowerDistance();
if (aDist < aTol) {
Standard_Real U, V;