home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
dos
/
grafik
/
vifs
/
dett.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-07-12
|
266 b
|
17 lines
/*
* dett.c -- determinant of a transform.
*
* 4 june 1989 Olle Olsson.
*/
#include "ifs.h"
#include <math.h>
double dett( transform *tp )
{
/* determinant of the transform */
return fabs(tp -> a11 * tp -> a22 - tp -> a12 * tp -> a21 );
}