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