mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
31 lines
717 B
Plaintext
Executable File
31 lines
717 B
Plaintext
Executable File
puts "TODO OCC12345 ALL: Error : colors are not equal"
|
|
puts "TODO OCC12345 ALL: Error : 3 boxes missing in the viewer!"
|
|
|
|
puts "========"
|
|
puts "OCC204"
|
|
puts "========"
|
|
|
|
vinit
|
|
OCC204 0
|
|
vfit
|
|
|
|
set rd_ch 80000
|
|
set gr_ch 80000
|
|
set bl_ch 80000
|
|
|
|
set color [QAGetPixelColor 150 200]
|
|
regexp {RED +: +([-0-9.+eE]+)} $color full rd
|
|
regexp {GREEN +: +([-0-9.+eE]+)} $color full gr
|
|
regexp {BLUE +: +([-0-9.+eE]+)} $color full bl
|
|
|
|
set rd_int [expr int($rd * 1.e+05)]
|
|
set gr_int [expr int($gr * 1.e+05)]
|
|
set bl_int [expr int($bl * 1.e+05)]
|
|
|
|
if { ${rd_int} != ${rd_ch} || ${gr_int} != ${gr_ch} || ${bl_int} != ${bl_ch} } {
|
|
puts "Error : colors are not equal"
|
|
puts "Error : 3 boxes missing in the viewer!"
|
|
}
|
|
|
|
set only_screen 1
|