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

  1. #include "vogle.h"
  2.  
  3. /*
  4.  * PushMatrix
  5.  */
  6. void
  7. PushMatrix()
  8. {
  9.     pushmatrix();
  10. }
  11.  
  12. /*
  13.  * PopMatrix
  14.  */
  15. void
  16. PopMatrix()
  17. {
  18.     popmatrix();
  19. }
  20.  
  21. /*
  22.  * GetMatrix
  23.  */
  24. void
  25. GetMatrix(mat)
  26.     float    *mat;
  27. {
  28.     getmatrix(mat);
  29. }
  30.  
  31. /*
  32.  * LoadMatrix
  33.  */
  34. void
  35. LoadMatrix(mat)
  36.     float    *mat;
  37. {
  38.     loadmatrix(mat);
  39. }
  40.  
  41. /*
  42.  * MultMatrix
  43.  */
  44. void
  45. MultMatrix(mat)
  46.     float    *mat;
  47. {
  48.     multmatrix(mat);
  49. }
  50.