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

21 lines
713 B
Plaintext
Executable File

puts "============"
puts "BUC60887"
puts "============"
puts ""
############################################
## Shape hangs after command " vdisplay " in the Viewer3d.
############################################
restore [locate_data_file BUC60887.brep] result
set nb_info [nbshapes result]
regexp {VERTEX +: +([-0-9.+eE]+)} $nb_info full nb_v
puts [format "Shape res contains %s vertexes" $nb_v]
if { $nb_v == 0} {
puts "Error : Result shape is NULL shape"
} else {
checkview -display result -3d -path ${imagedir}/${test_image}.png
}