From 73d353ce651f08660dfb04beb81abf2bb34c60bb Mon Sep 17 00:00:00 2001 From: FtpSantos Date: Wed, 29 May 2024 10:38:21 +0100 Subject: [PATCH] 0033727: Modeling Algorithms - Add corner check in AddClose function to detect void bounding box Correct spacing in B.GetGap --- src/BRepBndLib/BRepBndLib.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BRepBndLib/BRepBndLib.cxx b/src/BRepBndLib/BRepBndLib.cxx index 56465e5f94..22d8cb7dbb 100644 --- a/src/BRepBndLib/BRepBndLib.cxx +++ b/src/BRepBndLib/BRepBndLib.cxx @@ -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(); }