home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / src / lib / mg / rib / mgributil.c < prev   
Encoding:
C/C++ Source or Header  |  1993-08-26  |  465 b   |  24 lines

  1. #include "mgP.h"
  2. #include "mgribP.h"
  3. #include "transform.h"
  4. #include "mgribtoken.h"
  5. #include <stdarg.h>
  6.  
  7. /*-----------------------------------------------------------------------
  8.  * Function:    mgrib_printmatrix
  9.  * Description: prints rib binding for given matrix
  10.  * Returns:    nothing
  11.  * Author:    wisdom
  12.  * Date:    Thu Aug 26 13:39:21 CDT 1993    
  13.  * Notes:
  14.  */
  15.  
  16. void
  17. mgrib_printmatrix(Transform T)
  18. {
  19.    int i;
  20.    
  21.    mrti(mr_concattransform, mr_parray, 16, T, mr_NULL);
  22. }
  23.  
  24.