home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / fermiVogle.tar.Z / fermiVogle.tar / devel / src / sunpas / pviewing.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-07  |  929 b   |  65 lines

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * PolarView
  5.  */
  6. PolarView(dist, azim, inc, twist)
  7.     float    dist, azim, inc, twist;
  8. {
  9.     polarview(dist, azim, inc, twist);
  10. }
  11.  
  12. /*
  13.  * Up
  14.  */
  15. Up(x, y, z)
  16.     float    x, y, z;
  17. {
  18.     up(x, y, z);
  19. }
  20.  
  21. /*
  22.  * LookAt
  23.  */
  24. LookAt(vx, vy, vz, px, py, pz, twist)
  25.     float  vx, vy, vz, px, py, pz, twist;
  26. {
  27.     lookat(vx, vy, vz, px, py, pz, twist);
  28. }
  29.  
  30. /*
  31.  * Perspective
  32.  */
  33. Perspective(fov, aspect, hither, yon)
  34.     float     fov, aspect, hither, yon;
  35. {
  36.     perspective(fov, aspect, hither, yon);
  37. }
  38.  
  39. /*
  40.  * Window
  41.  */
  42. Window(left, right, bottom, top, hither, yon)
  43.     float     left, right, bottom, top, hither, yon;
  44. {
  45.     window(left, right, bottom, top, hither, yon);
  46. }
  47.  
  48. /*
  49.  * Ortho
  50.  */
  51. Ortho(left, right, bottom, top, hither, yon)
  52.     float     left, right, bottom, top, hither, yon;
  53. {
  54.     ortho(left, right, bottom, top, hither, yon);
  55. }
  56.  
  57. /*
  58.  * Ortho2
  59.  */
  60. Ortho2(left, right, bottom, top)
  61.     float    left, right, bottom, top;
  62. {
  63.     ortho2(left, right, bottom, top);
  64. }
  65.