1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-04 13:13:25 +03:00

0024143: bopcheck command throws an exception

Use the tolerance value of the face instead of sum of tolerance values of face and edge to compute grid points on the surface of the face.
Adding test case for issue CR24143
This commit is contained in:
emv
2013-09-12 14:14:12 +04:00
committed by bugmaster
parent b569f2a3ba
commit 6dc54e56bf
2 changed files with 20 additions and 1 deletions

View File

@@ -1900,7 +1900,7 @@ Standard_Boolean IntTools_BeanFaceIntersector::ComputeLocalized() {
Handle(Geom_BSplineSurface) aSurfBspl = Handle(Geom_BSplineSurface)::DownCast(myTrsfSurface);
ComputeGridPoints(aSurfBspl, myUMinParameter, myUMaxParameter,
myVMinParameter, myVMaxParameter, myCriteria,
myVMinParameter, myVMaxParameter, myFaceTolerance,
aSurfaceData);
if(!bFBoxFound) {