1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
ski 5747059b21 0026833: Create command checkview containing all viewer types
Created command checkview for displaying shapes.
2016-02-05 11:14:37 +03:00

29 lines
748 B
Plaintext
Executable File

puts "REQUIRED All: Faulty shapes in variables faulty_1 to faulty_"
puts "========="
puts " OCC935 "
puts "(case 2)"
puts "========="
puts ""
###############################
## instability in checkshape in KAS:dev version.
###############################
restore [locate_data_file OCC935_2.brep] result
set err [checkshape result]
set j 1
repeat 25 {
restore [locate_data_file OCC935_2.brep] result
set err1 [checkshape result]
if { $err != $err1 } {
puts [format " Faulty OCC935 (case 2): function CHECKSHAPE works wrongly on %s time" $j]
break
} else {
puts [format " OCC935 (case 2) OK: function CHECKSHAPE works properly %s time" $j]
}
incr j
}
checkview -display result -2d -path ${imagedir}/${test_image}.png