1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Modeling - Handle void bounding box case in BRepBndLib::AddOptimal #470

In some cases face without natural bound can be not have edges on curve
This commit is contained in:
Pasukhin Dmitry 2025-03-31 10:01:23 +01:00 committed by GitHub
parent 25b12541d7
commit 52a93a3bdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 2 deletions

View File

@ -619,8 +619,13 @@ void FindExactUVBounds(const TopoDS_Face& FF,
BndLib_Add2dCurve::AddOptimal(aC2D, aT1, aT2, TolUV, aBox);
//
}
//
aBox.Get(umin, vmin, umax, vmax);
// In some cases no edges are found
if (!aBox.IsVoid())
{
aBox.Get(umin, vmin, umax, vmax);
}
//
TopLoc_Location aLoc;
Handle(Geom_Surface) aS = BRep_Tool::Surface(FF, aLoc);

View File

@ -0,0 +1,10 @@
puts "========================================================================="
puts "GH469: Bounding box is void when using BRepBndLib::AddOptimal"
puts "========================================================================="
puts ""
pload QAcommands
restore [locate_data_file bug_gh469.brep] result
bounding result -optimal