mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0029463: Regression relation to 691 version: Method BndBox::IsOut() returns true for point lying on the planar face
Correct the method BRepBndLib::Add so that to enlarge the bounding box on the tolerance of edges which curves participate in calculation of the box.
This commit is contained in:
parent
9b1d4e7fbe
commit
1d53219a28
@ -115,8 +115,9 @@ void BRepBndLib::Add(const TopoDS_Shape& S, Bnd_Box& B, Standard_Boolean useTria
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
for (;ex2.More();ex2.Next()) {
|
for (;ex2.More();ex2.Next()) {
|
||||||
BC.Initialize(TopoDS::Edge(ex2.Current()));
|
const TopoDS_Edge& anEdge = TopoDS::Edge(ex2.Current());
|
||||||
BndLib_Add3dCurve::Add(BC, BRep_Tool::Tolerance(F), B);
|
BC.Initialize(anEdge);
|
||||||
|
BndLib_Add3dCurve::Add(BC, BRep_Tool::Tolerance(anEdge), B);
|
||||||
}
|
}
|
||||||
B.Enlarge(BRep_Tool::Tolerance(F));
|
B.Enlarge(BRep_Tool::Tolerance(F));
|
||||||
}
|
}
|
||||||
|
16
tests/lowalgos/bnd/bug29463
Normal file
16
tests/lowalgos/bnd/bug29463
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC29463"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
#################################################
|
||||||
|
# Method BndBox::IsOut() returns true for point lying on the planar face
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
restore [locate_data_file bug29463_face13_691.brep] f
|
||||||
|
|
||||||
|
vertex v 165.16888924444618 16.119975403493935 6.6799998283386177
|
||||||
|
set res [isbbinterf f v]
|
||||||
|
|
||||||
|
if [regexp "The shapes are NOT interfered by AABB" $res] {
|
||||||
|
puts "Error: bounding box works incorrect"
|
||||||
|
}
|
@ -1 +1,2 @@
|
|||||||
001 2dinter
|
001 2dinter
|
||||||
|
002 bnd
|
||||||
|
Loading…
x
Reference in New Issue
Block a user