mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
28 lines
805 B
Plaintext
28 lines
805 B
Plaintext
puts "========"
|
|
puts "OCC26404"
|
|
puts "========"
|
|
puts ""
|
|
###########################################################################################
|
|
# Visualization, Ray Tracing - use solid background color when gradient color is disabled
|
|
###########################################################################################
|
|
|
|
box b 1 2 3
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
vsetdispmode 1
|
|
vsetcolorbg 10 10 10
|
|
vdisplay b
|
|
vfit
|
|
vraytrace 1
|
|
set bug_info_1 [vreadpixel 50 50 rgb name]
|
|
if {$bug_info_1 != "GRAY4"} {
|
|
puts "ERROR: OCC26404 is reproduced. Background color is invalid (case #1)."
|
|
}
|
|
vsetgradientbg 255 0 0 0 0 255 1
|
|
vsetgradientbg 255 0 0 0 0 255 0
|
|
set bug_info_2 [vreadpixel 50 50 rgb name]
|
|
if {$bug_info_2 != "GRAY4"} {
|
|
puts "ERROR: OCC26404 is reproduced. Background color is invalid (case #2)."
|
|
}
|