mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
38 lines
970 B
Plaintext
38 lines
970 B
Plaintext
puts "============"
|
|
puts "CR26870"
|
|
puts "============"
|
|
puts ""
|
|
|
|
##########################################################################################
|
|
puts "Visualization - deactivated selections are not updated after object's re-computation"
|
|
##########################################################################################
|
|
|
|
pload VISUALIZATION MODELING
|
|
|
|
vinit
|
|
box b 1 1 1
|
|
vdisplay b
|
|
vfit
|
|
|
|
vselmode b 2 1
|
|
vselmode b 4 1
|
|
vselmode b 4 0
|
|
|
|
box b 3 3 3
|
|
vdisplay b
|
|
vfit
|
|
|
|
vselmode 4 1
|
|
|
|
# pick a point onto previously computed face
|
|
vmoveto 80 265
|
|
if {[vreadpixel 90 206 name] == "CYAN1 1"} {
|
|
puts "ERROR: previously computed entities are highlighted! Selection mode 4 was not updated after redisplaying the box."
|
|
}
|
|
# pick a point onto box
|
|
if {[vreadpixel 29 216 name] == "YELLOW 1"} {
|
|
puts "ERROR: the box's face is not highlighted! Selection mode 4 was not updated after redisplaying the box."
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|