| # | Line 8 | Line 8 | |
|---|---|---|
| 8 | extern "C" { | |
| 9 | #endif | |
| 10 | ||
| 11 | – | #include "copyright.h" |
| 12 | – | |
| 11 | #include <string.h> | |
| 12 | ||
| 13 | #include "fvect.h" | |
| 14 | ||
| 15 | < | typedef FLOAT MAT4[4][4]; |
| 15 | > | typedef RREAL MAT4[4][4]; |
| 16 | ||
| 19 | – | #ifdef BSD |
| 20 | – | #define copymat4(m4a,m4b) bcopy((void *)m4b,(void *)m4a,sizeof(MAT4)) |
| 21 | – | #else |
| 17 | #define copymat4(m4a,m4b) (void)memcpy((void *)m4a,(void *)m4b,sizeof(MAT4)) | |
| 23 | – | #endif |
| 18 | ||
| 19 | #define MAT4IDENT { {1.,0.,0.,0.}, {0.,1.,0.,0.}, \ | |
| 20 | {0.,0.,1.,0.}, {0.,0.,0.,1.} } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |