1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug27981
ifv 5be09a153b 0027981: BRepExtrema_DistShapeShape returns not null distance on interfered shapes
The reason of the bug is bad start points on surfaces, which are used by searching roots algorithm as start points for iteration process. Starting with these points algorithm for searching roots of set of equations cannot reach correct root. To find correct start points increasing number of sampling points is applied.
2017-05-05 11:27:38 +03:00

18 lines
425 B
Plaintext

puts "========"
puts "OCC27981"
puts "========"
puts ""
#################################################
# BRepExtrema_DistShapeShape returns not null distance on interfered shapes
#################################################
restore [locate_data_file bug27981_a.brep] a
restore [locate_data_file bug27981_b.brep] b
distmini dd a b
set dist [dval dd_val]
if {$dist > 1.e-7} {
puts "\nError: invalid distance.\n"
}