Ignore:
Timestamp:
03/16/07 10:22:26 (17 years ago)
Author:
pinsard
Message:

corrections of some misspellings in some *.pro

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/TRIANGULATION/drawcoast_e.pro

    r163 r226  
    55; @categories 
    66; 
    7 ;  
     7; 
    88; @param MASK 
    99; 
    10 ;  
     10; 
    1111; @param XF 
    12 ;  
     12; 
    1313; 
    1414; @param YF 
    15 ;  
     15; 
    1616; 
    1717; @param NX 
    18 ;  
     18; 
    1919; 
    2020; @param NY 
    21 ;  
     21; 
    2222; 
    2323; @keyword COAST_COLOR {default=0} 
     
    2929; 
    3030; @keyword XSEUIL {default=5} 
    31 ; To eliminate segments of coasts which are to big (which link points which can  
    32 ; be close on the sphere but distant on the drawing). We delete all segments  
     31; To eliminate segments of coasts which are to big (which link points which can 
     32; be close on the sphere but distant on the drawing). We delete all segments 
    3333; whose the size surpass the size of the window following X/XSEUIL. 
    34 ; But it can be to big if we do a big zoom or a little one for some  
     34; But it can be to big if we do a big zoom or a little one for some 
    3535; projections... We specify it the keyword thanks to this keyword! 
    3636; 
     
    4040; @keyword _EXTRA 
    4141; Used to pass our keywords 
    42 ;   
     42; 
    4343; @returns 
    44 ;  
    45 ;  
     44; 
     45; 
    4646; @uses 
    47 ;  
    48 ;  
     47; 
     48; 
    4949; @restrictions 
    50 ;  
    51 ;  
     50; 
     51; 
    5252; @examples 
    53 ;  
    54 ;  
     53; 
     54; 
    5555; @history 
    56 ;  
    57 ;  
    58 ; @version  
     56; 
     57; 
     58; @version 
    5959; 
    6060; @todo 
    6161; Seb: remplir le header 
    62 ;  
     62; 
    6363;- 
    6464 
     
    8888   if NOT keyword_set(xseuil) then xseuil = 5. < (min([nx, ny])-2) 
    8989   distanceseuil = (!p.position[2]-!p.position[0])/xseuil 
    90 ; liste: liste des points i pourlesquels on va tracer un segment  
     90; liste: liste des points i pour lesquels on va tracer un segment 
    9191   index = lindgen(nx, ny) 
    9292   index = index[0:nx-2, 1:ny-1] 
     
    107107   if NOT keyword_set(xseuil) then xseuil = 5. < (min([nx, ny])-2) 
    108108   distanceseuil = (!p.position[2]-!p.position[0])/xseuil 
    109 ; liste: liste des points i pourlesquels on va tracer un segment  
     109; liste: liste des points i pour lesquels on va tracer un segment 
    110110   index = lindgen(nx, ny-1) 
    111111   index = index[0:nx-2, *] 
Note: See TracChangeset for help on using the changeset viewer.