mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
A new command vbackground is created. Old background commands are made aliases for the newly created command (including vsetdefaultbg). Tests are modified using newly added command vbackground.
25 lines
655 B
Plaintext
25 lines
655 B
Plaintext
puts "========"
|
|
puts "Gradient background is lost at some camera positions"
|
|
puts "========"
|
|
|
|
# Test case setup the camera in such a position,
|
|
# so that background plane will be clipped by Z-range if not handled by Z-fit.
|
|
|
|
pload MODELING VISUALIZATION
|
|
box b 0 0 -100 100 90 10
|
|
|
|
vclear
|
|
vinit View1
|
|
vaxo
|
|
vbackground -gradient 0.705882 0.784314 1 0.705882 0.705882 0.705882 -gradientMode VERTICAL
|
|
vzbufftrihedron
|
|
vdisplay -dispMode 1 b
|
|
vsetlocation b 0 0 1000
|
|
vfit
|
|
|
|
vviewparams -scale 6.66 -eye 48 43 -210 -at 50 45 -95
|
|
|
|
if { [vreadpixel 100 300 rgb name] != "GRAY74" } { puts "Error: gradient background is not displayed" }
|
|
|
|
vdump $imagedir/${casename}.png
|