home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / SRC / SUNPAS / PASPECT.C < prev    next >
C/C++ Source or Header  |  1994-06-17  |  412b  |  47 lines

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * GetAspect
  5.  */
  6. float
  7. GetAspect()
  8. {
  9.     return(getaspect());
  10. }
  11.  
  12. /*
  13.  * GetFactors
  14.  */
  15. GetFactors(xr, yr)
  16.     float    *xr, *yr;
  17. {
  18.     getfactors(xr, yr);
  19. }
  20.  
  21. /*
  22.  * GetDisplaySize
  23.  */
  24. GetDisplaySize(xs, ys)
  25.     float    *xs, *ys;
  26. {
  27.     getdisplaysize(xs, ys);
  28. }
  29.  
  30. /*
  31.  * ExpandViewport
  32.  */
  33. float
  34. ExpandViewport()
  35. {
  36.     expandviewport();
  37. }
  38.  
  39. /*
  40.  * UnExpandViewport
  41.  */
  42. float
  43. UnExpandViewport()
  44. {
  45.     unexpandviewport();
  46. }
  47.