mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Now 'vcolorscale' command works correctly with the active view. Changed types of some variables from Standard_Real to Standard_Integer. Added options to set the width or the height of color scale explicitly. Test case is added.
28 lines
490 B
Plaintext
28 lines
490 B
Plaintext
puts "============"
|
|
puts "OCC26312"
|
|
puts "ColorScale doesn't work as expected."
|
|
puts "============"
|
|
puts ""
|
|
|
|
vinit View1
|
|
vclear
|
|
vaxo
|
|
|
|
# Disable ffp
|
|
vcaps -ffp 0
|
|
# draw color scale
|
|
vcolorscale cs -demo
|
|
vdump ${imagedir}/${casename}_View1.png
|
|
|
|
#add more views
|
|
vinit View2 w=300 h=500
|
|
vinit View3 w=500 h=300
|
|
|
|
# dump all views
|
|
vactivate View2
|
|
vcolorscale cs -height 500
|
|
vdump ${imagedir}/${casename}_View2.png
|
|
vactivate View3
|
|
vcolorscale cs -height 300
|
|
vdump ${imagedir}/${casename}_View3.png
|