mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
puts "============"
|
|
puts "CR26680"
|
|
puts "============"
|
|
puts ""
|
|
|
|
##########################################################################################
|
|
puts "Visualization - Changed behavior of mesh visualization and selection in OMF sample"
|
|
##########################################################################################
|
|
|
|
pload VISUALIZATION XDE
|
|
|
|
vinit
|
|
meshfromstl m [locate_data_file bug26680.stl]
|
|
meshcolors m elem2 1
|
|
|
|
vselmode 0 1
|
|
|
|
vmoveto 200 200
|
|
if {[vreadpixel 197 257 rgb name] != "CYAN1"} {
|
|
puts "ERROR: presentation for dynamic highlight of the object is wrong!"
|
|
}
|
|
vmoveto 0 0
|
|
if {[vreadpixel 197 257 rgb name] != "BLUE2"} {
|
|
puts "ERROR: the object is not unhighlighted after dynamic highlight!"
|
|
}
|
|
|
|
vselect 200 200
|
|
if {[vreadpixel 197 257 rgb name] != "GRAY93"} {
|
|
puts "ERROR: presentation for selection highlight is wrong!"
|
|
}
|
|
vselect 0 0
|
|
if {[vreadpixel 197 257 rgb name] != "BLUE2"} {
|
|
puts "ERROR: the object is not unhighlighted after selection highlight!"
|
|
}
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|