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

  1. /* Ends a plotting session */
  2.  
  3. #include "plplot.h"
  4. #include "declare.h"
  5.  
  6. void plend()
  7. {
  8.    PLINT dev, term, gra, level;
  9.  
  10.    glev(&level);
  11.    if (level == 0) return;
  12.    gdev(&dev,&term,&gra);
  13.    if (gra != 0) pltext();
  14.    plfontrel();
  15.    grtidy();
  16.    slev(0);
  17. }
  18.