1
0
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:
kgv 2018-12-29 15:41:54 +03:00 committed by bugmaster
parent a345becea2
commit 0939d4cf1f

View File

@ -414,6 +414,10 @@ static void ComputePCA(const TopoDS_Shape& theS,
{ {
BRepBndLib::Add(aST, aShapeBox); BRepBndLib::Add(aST, aShapeBox);
} }
if (aShapeBox.IsVoid())
{
return;
}
gp_Pnt aPMin = aShapeBox.CornerMin(); gp_Pnt aPMin = aShapeBox.CornerMin();
gp_Pnt aPMax = aShapeBox.CornerMax(); gp_Pnt aPMax = aShapeBox.CornerMax();