home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / VOGLE / SRC / SUNFORT / FASPECT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-20  |  430 b   |  49 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. void
  16. getfactors_(xr, yr)
  17.     float    *xr, *yr;
  18. {
  19.     getfactors(xr, yr);
  20. }
  21.  
  22. /*
  23.  * getdisplaysize_
  24.  */
  25. void
  26. getdisplaysize_(xs, ys)
  27.     float    *xs, *ys;
  28. {
  29.     getdisplaysize(xs, ys);
  30. }
  31.  
  32. /*
  33.  * expandviewport_
  34.  */
  35. void
  36. expandviewport_()
  37. {
  38.     expandviewport();
  39. }
  40.  
  41. /*
  42.  * unexpandviewport_
  43.  */
  44. void
  45. unexpandviewport_()
  46. {
  47.     unexpandviewport();
  48. }
  49.