mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
25 lines
489 B
Plaintext
Executable File
25 lines
489 B
Plaintext
Executable File
puts "==========="
|
|
puts "OCC16950"
|
|
puts "==========="
|
|
######################################################
|
|
# OCC Visualization fails to display empty nested compounds
|
|
######################################################
|
|
|
|
set BugNumber OCC16950
|
|
|
|
puts "Make compound containing another (empty) one"
|
|
compound c
|
|
compound c result
|
|
|
|
puts "And display it"
|
|
vinit
|
|
vdisplay result
|
|
|
|
# Resume
|
|
if [catch { vsetdispmode 2 } res] {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|