Changes between Version 1 and Version 2 of Doc/Chap3


Ignore:
Timestamp:
01/22/08 15:16:35 (16 years ago)
Author:
kolasinski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Chap3

    v1 v2  
    138138                      ; = 2 (mask + real continents drawn) 
    139139}}} 
     140 
     141 * 'vector_sample' defines the way vectors are shown on a vector plot. In that case, it will draw one vector out of two. 
     142{{{ 
     143vector_sample = 2     ; vector sampling (1) 
     144;; 
     145}}} 
     146 
     147 * Those parameters defines the thickness, the style and the colors of 1D curves. Have a look on the on-line help (search for 'Line Annotation Properties' and 'Graphics keywords (collected)' in the 'Index' panel). 
     148{{{ 
     149   line_thick = [2,2,2,2,2,2,2,2]   ; 1D plot line thickness (for each overlay curves) 
     150   line_style = [1,1,1,1,2,2,3,3]   ; 1D plot line style (for each overlay curves) 
     151   line_color = [1,2,3,4,6,7,7,8]   ; 1D plot line color (for each overlay curves) 
     152; 1=black; 2=red; 3=green; 4=blue; 6=purple 
     153; 43 ---- 90 ---- 160 ---- 190 ---- 210 ---- 254 
     154; blue    turq    green    yell     orange   red 
     155}}} 
     156 
     157