pro l_color_nw,nc,f ;----------------------------------------------------------------------- ; Load ASCII color table without using a PV-Wave window (nw: no window) ;----------------------------------------------------------------------- openr,9,f color=intarr(nc,3) readf,9,color r=intarr(nc) g=intarr(nc) b=intarr(nc) r=color(*,0) g=color(*,1) b=color(*,2) tvlct,r,g,b close,9 return end