mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
AIS_InteractiveContext::Load() now loads the object regardless specified selection mode and decomposition flag. AIS_InteractiveContext::Load() and ::KeepTemporary() now register object in the Viewer in the same way as ::Display() does. Draw Harness command vdisplay has been extended with new flag -erased to load object into context in erased state.
21 lines
586 B
Plaintext
21 lines
586 B
Plaintext
puts "========"
|
|
puts "0029262: Visualization - AIS_InteractiveContext::Load() does not register Object in the Viewer"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
vclear
|
|
vclose ALL
|
|
vinit View1
|
|
vinit View2
|
|
box b 1 2 3
|
|
vdisplay -dispMode 1 -inview -erased b
|
|
vdisplay b
|
|
vfit
|
|
if { [vreadpixel 200 200 rgb name] != "DARKGOLDENROD3" } { puts "Error: object is not displayed in Shaded mode" }
|
|
vdump $imagedir/${casename}_view2.png
|
|
|
|
vactivate View1
|
|
if { [vreadpixel 200 200 rgb name] != "BLACK" } { puts "Error: object view affinity is ignored" }
|
|
vdump $imagedir/${casename}_view1.png
|