| # | Line 161 | Line 161 | conexform(co) /* get cone transformation matrix */ | |
|---|---|---|
| 161 | register CONE *co; | |
| 162 | { | |
| 163 | double sqrt(), fabs(); | |
| 164 | < | double m4[4][4]; |
| 164 | > | MAT4 m4; |
| 165 | register double d; | |
| 166 | register int i; | |
| 167 | ||
| 168 | < | co->tm = (double (*)[4])malloc(sizeof(m4)); |
| 168 | > | co->tm = (FLOAT (*)[4])malloc(sizeof(m4)); |
| 169 | if (co->tm == NULL) | |
| 170 | error(SYSTEM, "out of memory in conexform"); | |
| 171 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |