section of routines in graphk.i

functions in graphk.i -

 
 
 
GraphK


 GraphK  
 
struct GraphK {  
/* DOCUMENT GraphK  
       A   structure   for   storing   all   possible   keywords   to   graphic  
       routines.  Members are  _pointers_, as  a few  of these  keywords accept  
       several data types.  
       Example:  
       mykeywords=GraphK(color=&string("white"),msize=&double(0.5)[...]);  
       plgk,y,x,keywords=mykeywords;  
       Note: You cannot make a reference to a known value directly like "&0.5",  
       but  you can  always  do  "&double(0.5)".  Makes  the  syntax even  more  
       awkward,   but  this   still  simplifies   somewhat   implementing  some  
       programs...  
         
SEE ALSO: plgk,   plhk,   plg,   plh,   plmkk,   graphk,   pltk,  
pointer,   legend,   hide,   type,   width,   color,  
closed,   smooth,   marks,   marker,   mspace,   mphase,  
rays,   arrowl,   arroww,   rspace,   rphase,   just,  
msize,   font,   height,   opaque,   orient,   justify,  
tosys;,   }  
 
 
 
graphk


             graphk.i  
 
    Alternate syntax for graphic routines:  every keywords are set through only  
    one, of  type GraphK. Members of  GraphK are all pointer,  for some graphic  
    keywords support several datatypes. This syntax is useful when one wants to  
    carry  graphic keywords  trough programs  in a  handy way,  not  really for  
    command line. Currently supported: plhk and plgk.  
SEE ALSO: GraphK,   plhk,   plgk,   plmkk,   drawmaskk,   in,  
drawmask,   i  
 
 
 
plgk


             plhk,y  
          or plhk,y,x  
 
    Wrapper to plg, which accepts a single keyword: KEYWORDS (of type GraphK).  
    Example: plgk,y,x,keywords=GraphK(color=&string("white"));  
    Sounds nuts, but it  can be quite useful to have all  graphic keywords in a  
    single variable, that can be made external or belong to a sructure...  
SEE ALSO: plg,   plhk,   GraphK,   graphk,   pltk  
 
 
 
plhk


             plhk,y  
          or plhk,y,x  
 
    Wrapper to plh, which accepts a single keyword: KEYWORDS (of type GraphK).  
    Example: plhk,y,x,keywords=GraphK(color=&string("white"));  
    Sounds nuts, but it  can be quite useful to have all  graphic keywords in a  
    single variable, that can be made external or belong to a sructure...  
SEE ALSO: plh,   plgk,   GraphK,   graphk,   pltk  
 
 
 
plmkk


             plmkk,y  
          or plmkk,y,x  
 
    Wrapper to plmk, which accepts a single keyword: KEYWORDS (of type GraphK).  
    Example: plmkk,y,x,keywords=GraphK(msize=&double(0.2));  
    Sounds nuts, but it  can be quite useful to have all  graphic keywords in a  
    single variable, that can be made external or belong to a sructure...  
SEE ALSO: plg,   plhk,   GraphK,   graphk,   plgk,   pltk  
 
 
 
pltk


             pltk,text,x,y  
 
    Wrapper to plt, which accepts a single keyword: KEYWORDS (of type GraphK).  
    Example: pltk,"text",x,y,keywords=GraphK(font=&string("helveticaB"));  
    Sounds nuts, but it  can be quite useful to have all  graphic keywords in a  
    single variable, that can be made external or belong to a sructure...  
SEE ALSO: plg,   plhk,   GraphK,   graphk,   plgk,   plmkk