1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tests/bugs/vis/bug22632
isz 24a886979e 0022632: Visualization - provide logarithmic scale for Aspect_ColorScale class
Option "-logarithmic" is provided for draw command vcolorscale.
It changes color scale's labels to logarithmic values due to the min and max range and the number of intervals of the color scale.
New test case added. Fixed error when command vcolorscale was called without arguments.
2015-10-15 12:15:06 +03:00

32 lines
750 B
Plaintext

puts "============"
puts "OCC25632"
puts "Display logarithmic colorscale."
puts "============"
puts ""
vinit View1
vclear
vaxo
# create non-logarithmic color scale with range 0-1000 and 3 intervals
vcolorscale cs -range 0 1000 3
vdump ${imagedir}/${casename}_1.png
# create logarithmic color scale with range 1-1000 and 3 intervals
vcolorscale cs -range 0 1000 3 -log 1
vdump ${imagedir}/${casename}_2.png
# create logarithmic color scales with different ranges and intervals
vcolorscale cs -range 5 200 4
vdump ${imagedir}/${casename}_3.png
vcolorscale cs -range 1 1568 8
vdump ${imagedir}/${casename}_4.png
vcolorscale cs -range 3 500 5
vdump ${imagedir}/${casename}_5.png
vcolorscale cs -range 1 1000 6
vdump ${imagedir}/${casename}_6.png