Ignore:
Timestamp:
08/29/06 14:59:46 (18 years ago)
Author:
navarro
Message:

header improvements : type of parameters and keywords, default values, spell checking + idldoc assistant (IDL online_help)

Location:
trunk/SRC/ToBeReviewed/PLOTS/VECTEUR
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/ajoutvect.pro

    r157 r163  
    1010; Graphics 
    1111; 
    12 ; @param VECTEUR {in}{required} 
    13 ; It is a structure with 2 elements containing we 2 matrixes U and V of  
    14 ; values of the zonal and meridian component of the fiel of vectors to  
     12; @param VECTEUR {in}{required}{type=vector} 
     13; It is a structure with 2 elements containing we 2 matrices U and V of  
     14; values of the zonal and meridian component of the field of vectors to  
    1515; be traced. 
    1616;      For ex: 
     
    1919;       vecteur={u:lec('unsurface'),v:lec('vnsurface')} goes well too. 
    2020; 
    21 ; @keyword UNVECTSUR 
     21; @keyword UNVECTSUR {type=scalar or array} 
    2222; It is a scalar n or an array with 2 elements [n1,n2]. 
    2323; In the first case, we will trace a vector on n following x and y. 
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/vecteur.pro

    r157 r163  
    2626FUNCTION cv_cm2normal, angle 
    2727; 
    28 ; Give the lenth in normal coordinates of a trait oriented of an angle 
     28; Give the length in normal coordinates of a trait oriented of an angle 
    2929; by rapport at the x axis and which must do 1 cm on the drawing. 
    3030; Angle can be an array. 
     
    3535; 
    3636@common 
    37 ; What is the lenth in normal coordinates of a trait which will do 1 cm 
     37; What is the length in normal coordinates of a trait which will do 1 cm 
    3838; on the paper an which is parallel to x? 
    3939  mipgsz = min(page_size, max = mapgsz) 
     
    4242   cm_en_normal = 1./sizexfeuille 
    4343; 
    44 ; If the aspect rapport of the window is not equal to 1, the lenth in 
     44; If the aspect rapport of the window is not equal to 1, the length in 
    4545; normalized coordinates of  a trait of 1 cm vary following the polar 
    4646; angle of this trait. 
     
    134134; for example when we trace only one vector on two). 
    135135; 
    136 ; @keyword CMREF 
    137 ; The lenth in cm that must measure the arrow normed normeref. By default,  
    138 ; it is ajusted t othe drawing and included between .5 and 1.5 cm. 
     136; @keyword CMREF {default=between .5 and 1.5 cm} 
     137; The length in cm that must measure the arrow normed normeref. By default,  
     138; it is adjusted to other drawing and included between .5 and 1.5 cm. 
    139139; 
    140140; @keyword MISSING 
     
    145145; The norme of the reference arrow. 
    146146; 
    147 ; @keyword VECTCOLOR 
     147; @keyword VECTCOLOR {default=0} 
    148148; The color of the arrow. Black by default (color 0) 
    149149;  
    150 ; @keyword VECTTHICK 
    151 ; The thick of the arrow. 1 by default  
     150; @keyword VECTTHICK {default=1} 
     151; The thick of the arrow.  
    152152; 
    153153; @keyword VECTREFPOS 
    154 ; Vector composed of 2 elements specifing the position on DATA coordinates  
    155 ; from de begining of the reference vector. By default at the right bottom  
     154; Vector composed of 2 elements specifying the position on DATA coordinates  
     155; from the beginning of the reference vector. By default at the right bottom  
    156156; of the drawing. 
    157157; 
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/velovect.pro

    r142 r163  
    2727;       ATAN2(V[i,j],U[i,j]). 
    2828; 
    29 ; @param X {in}{optional} 
    30 ; Optional abcissae values.  X must be a vector with a length  
     29; @param X {in}{optional}{type=vector} 
     30; Optional abscissa values.  X must be a vector with a length  
    3131; equal to the first dimension of U and V. 
    3232; 
    33 ; @param Y {in}{optional} 
     33; @param Y {in}{optional}{type=vector} 
    3434; Optional ordinate values.  Y must be a vector with a length 
    3535; equal to the first dimension of U and V. 
     
    4343; points.  Has effect only if MISSING is specified. 
    4444; 
    45 ; @keyword LENGTH 
     45; @keyword LENGTH {default=1.0} 
    4646; Length factor.  The default of 1.0 makes the longest (U,V) 
    4747; vector the length of a cell. 
     
    9595;- 
    9696; 
    97 PRO VELOVECT,U,V,X,Y, Missing = Missing, Length = length, Dots = dots,  $ 
     97PRO velovect,U,V,X,Y, Missing = Missing, Length = length, Dots = dots,  $ 
    9898        Color=color, CLIP=clip, NOCLIP=noclip, OVERPLOT=overplot, _EXTRA=extra 
    9999; 
Note: See TracChangeset for help on using the changeset viewer.