home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / VOGLE / SRC / SUNFORT / FCLIP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-27  |  133 b   |  14 lines

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * clipping
  5.  *
  6.  *    turn clipping on/off
  7.  */
  8. void
  9. clipping_(onoff)
  10.     int    *onoff;
  11. {
  12.     vdevice.clipoff = !*onoff;
  13. }
  14.