color/
vis_makect.pro
includes main-level programtop vis_makect
result = vis_makect(c1 [, c2] [, c3] [, ncolors=long] [, partition=fltarr(m - 1)])
Create a color table based on starting and ending colors (or optionally, a center color) and linearly interpolating.
Return value
bytarr(n, 3)
Parameters
- c1 in required type=bytarr(3) or bytarr(m, 3)
starting color or bytarr(m, 3) of colors; must be bytarr(m, 3) if
PARTITION
keyword is used- c2 in optional type=bytarr(3)
if two parameters are passed in, this is the ending color; if three parameters are passed in, this is the center color
- c3 in optional type=bytarr(3)
ending color
Keywords
- ncolors in optional type=long default=256
number of colors in the color table to create
- partition in optional type=fltarr(m - 1)
set to create a color table by interpreting c1 as a
bytarr(m, 3)
list of colors and the value ofPARTITION
as afltarr(k)
list of cutoff values between 0.0 and 1.0 (or 0 and 255); there must be one more color than cutoff value provided
Examples
See the main-level example program:
IDL> .run vis_makect
File attributes
Modification date: | Mon Nov 29 18:33:10 2010 |
Lines: | 121 |
Docformat: | rst rst |