home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 344b.lha / plplot_v2.6 / src / plpoi1.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-27  |  301 b   |  17 lines

  1. #include "plplot.h"
  2.  
  3. extern short int *fntlkup;
  4. extern short int numberfonts, numberchars;
  5.  
  6. void plpoi1(x,y,code)
  7. PLFLT x,y;
  8. PLINT code;
  9. {
  10.    PLINT sym, font, col;
  11.  
  12.    /* Initialize parameters. */
  13.    gatt(&font,&col);
  14.    sym = *(fntlkup+(font-1)*numberchars+code);
  15.    plhrsh(sym,wcpcx(x),wcpcy(y));
  16. }
  17.