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:
parent
a8b9d7eb27
commit
2b7fd8c81c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user