mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030428: Modeling Algorithms - BRepBndLib::AddOBB() throws exception on empty Compound
Added missing Bnd_Box::IsVoid() check.
This commit is contained in:
parent
a345becea2
commit
0939d4cf1f
@ -414,6 +414,10 @@ static void ComputePCA(const TopoDS_Shape& theS,
|
||||
{
|
||||
BRepBndLib::Add(aST, aShapeBox);
|
||||
}
|
||||
if (aShapeBox.IsVoid())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
gp_Pnt aPMin = aShapeBox.CornerMin();
|
||||
gp_Pnt aPMax = aShapeBox.CornerMax();
|
||||
|
Loading…
x
Reference in New Issue
Block a user