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

0033727: Modeling Algorithms - Add corner check in AddClose function to detect void bounding box

Correct spacing in B.GetGap
This commit is contained in:
FtpSantos 2024-05-29 10:38:21 +01:00 committed by oan
parent 62205d3db1
commit 73d353ce65

View File

@ -224,7 +224,7 @@ void BRepBndLib::AddClose(const TopoDS_Shape& S, Bnd_Box& B)
B.Add (BRep_Tool::Pnt (TopoDS::Vertex (ex.Current())));
}
if (!B.IsVoid() && B.CornerMax().IsEqual (B.CornerMin(), Precision::Confusion() + 2*B.GetGap()))
if (!B.IsVoid() && B.CornerMax().IsEqual (B.CornerMin(), Precision::Confusion() + 2 * B.GetGap()))
{
B.SetVoid();
}