mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
31 lines
756 B
Plaintext
Executable File
31 lines
756 B
Plaintext
Executable File
puts "TODO DEBUG_OCC24121 Debian60-64 Windows: Faulty OCC11081"
|
|
|
|
puts "========================"
|
|
puts "OCC11081"
|
|
puts "========================"
|
|
puts ""
|
|
#######################################################################
|
|
# BRepExtrema_DistShapeShape misses one of two solutions
|
|
#######################################################################
|
|
|
|
set BugNumber OCC11081
|
|
|
|
# infinite line is used
|
|
|
|
line ll 6834.93 -4100 500 0 0 1
|
|
mkedge ee ll
|
|
restore [locate_data_file OCC11081.brep] section4100
|
|
distmini dd ee section4100
|
|
set res_list [distmini dd ee section4100]
|
|
set res_length [llength ${res_list}]
|
|
puts "res_length = ${res_length}"
|
|
|
|
# Resume
|
|
puts ""
|
|
if { ${res_length} != 3 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|