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

  1. /* Sets line color */
  2.  
  3. #include "plplot.h"
  4.  
  5. void plcol(color)
  6. PLINT color;
  7. {
  8.       PLINT font,col;
  9.       PLINT level;
  10.  
  11.       glev(&level);
  12.       if (level < 1)  plexit("Please call plstar before calling plcol.");
  13.       if (color < 0)  plexit("Invalid color in plcol.");
  14.  
  15.       gatt(&font,&col);
  16.       satt(font,color);
  17.       grcol();
  18. }
  19.