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:
parent
25b12541d7
commit
52a93a3bdd
@ -619,8 +619,13 @@ void FindExactUVBounds(const TopoDS_Face& FF,
|
||||
BndLib_Add2dCurve::AddOptimal(aC2D, aT1, aT2, TolUV, aBox);
|
||||
//
|
||||
}
|
||||
//
|
||||
|
||||
// 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);
|
||||
|
10
tests/bugs/modalg_8/bug_gh469
Normal file
10
tests/bugs/modalg_8/bug_gh469
Normal 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
|
Loading…
x
Reference in New Issue
Block a user