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

  1. /* Switches to graphics mode */
  2.  
  3. #include "plplot.h"
  4.  
  5. void plgra()
  6. {
  7.       PLINT level;
  8.       glev(&level);
  9.       if (level < 1) plexit("Please call plstar before plgra.");
  10.       grgra();
  11. }
  12.