home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / SRC / SUNPAS / PVIEWP.C < prev    next >
C/C++ Source or Header  |  1994-04-27  |  429b  |  41 lines

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * PushViewPort
  5.  */
  6. void
  7. PushViewPort()
  8. {
  9.     pushviewport();
  10. }
  11.  
  12. /*
  13.  * PopViewPort
  14.  */
  15. void
  16. PopViewPort()
  17. {
  18.     popviewport();
  19. }
  20.  
  21. /*
  22.  * ViewPort
  23.  */
  24. void
  25. ViewPort(xlow, xhigh, ylow, yhigh)
  26.     float    xlow, ylow, xhigh, yhigh;
  27. {
  28.     viewport(xlow, xhigh, ylow, yhigh);
  29. }
  30.  
  31. /*
  32.  * GetViewPort
  33.  */
  34. void
  35. GetViewPort(left, right, bottom, top)
  36.     double    *left, *right, *bottom, *top;
  37. {
  38.     getviewport(left, right, bottom, top);
  39. }
  40.  
  41.