mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0029510: IntWalk_PWalking:: PutToBoundary(...) method results in appearing several coincident points in Walking-line
Places have been detected where coincident points are created. The problem has been fixed.
This commit is contained in:
parent
8dc56d0f88
commit
5c655dd566
@ -2427,7 +2427,16 @@ Standard_Boolean IntWalk_PWalking::
|
|||||||
{
|
{
|
||||||
aP1.SetXYZ(line->Value(aPInd).Value().XYZ());
|
aP1.SetXYZ(line->Value(aPInd).Value().XYZ());
|
||||||
if (aP1.SquareDistance(aPInt) > Precision::SquareConfusion())
|
if (aP1.SquareDistance(aPInt) > Precision::SquareConfusion())
|
||||||
|
{
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
else if (aPInd == 1)
|
||||||
|
{
|
||||||
|
// After insertion, we will obtain
|
||||||
|
// two coincident points in the line.
|
||||||
|
// Therefore, insertion is forbidden.
|
||||||
|
return isOK;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (++aPInd; aPInd <= aNbPnts; aPInd++)
|
for (++aPInd; aPInd <= aNbPnts; aPInd++)
|
||||||
@ -2468,7 +2477,16 @@ Standard_Boolean IntWalk_PWalking::
|
|||||||
{
|
{
|
||||||
aPCurr.SetXYZ(line->Value(aPInd).Value().XYZ());
|
aPCurr.SetXYZ(line->Value(aPInd).Value().XYZ());
|
||||||
if (aPCurr.SquareDistance(aPInt) > Precision::SquareConfusion())
|
if (aPCurr.SquareDistance(aPInt) > Precision::SquareConfusion())
|
||||||
|
{
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
else if (aPInd == aNbPnts)
|
||||||
|
{
|
||||||
|
// After insertion, we will obtain
|
||||||
|
// two coincident points in the line.
|
||||||
|
// Therefore, insertion is forbidden.
|
||||||
|
return isOK;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (--aPInd; aPInd > 0; aPInd--)
|
for (--aPInd; aPInd > 0; aPInd--)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user