mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
- Extended command Close with an option -silent - Extended command Close to handle */-ALL for closing ALL document - Replaced catch {Close D} by Close D -silent in tests
21 lines
663 B
Plaintext
21 lines
663 B
Plaintext
puts "============"
|
|
puts "0025381: Visualization - XCAFPrs_AISObject ignores visibility flag for sub-shapes"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload XDE OCAF VISUALIZATION
|
|
Close D -silent
|
|
ReadStep D [locate_data_file bug25381_test_assembly_invisible.step]
|
|
XShow D
|
|
vaxo
|
|
vfit
|
|
vsetdispmode 1
|
|
vselprops dynHighlight -dispMode -1
|
|
vmoveto 300 200
|
|
if { [vreadpixel 250 200 rgb name] != "CYAN2" } { puts "Error: object is NOT picked" }
|
|
vmoveto 200 250
|
|
if { [vreadpixel 200 250 rgb name] != "BLACK" } { puts "Error: hidden part is displayed" }
|
|
if { [vreadpixel 250 200 rgb name] != "RED4" } { puts "Error: object is picked by hidden part" }
|
|
|
|
vdump ${imagedir}/${casename}.png
|