home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / vifs / dett.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-12  |  266 b   |  17 lines

  1. /*
  2.  *    dett.c  --  determinant of a transform.
  3.  *
  4.  *    4 june 1989  Olle Olsson.
  5.  */
  6.  
  7. #include "ifs.h"
  8. #include <math.h>
  9.  
  10. double dett( transform *tp )
  11. {
  12. /* determinant of the transform */
  13. return fabs(tp -> a11 * tp -> a22 - tp -> a12 * tp -> a21 );
  14. }
  15.  
  16.  
  17.