mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
18 lines
425 B
Plaintext
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"
|
|
}
|
|
|