--- ray/src/common/xf.c 1990/12/15 15:01:40 1.9 +++ ray/src/common/xf.c 1991/10/23 15:19:25 1.11 @@ -24,7 +24,7 @@ int ac; char *av[]; { double atof(), sin(), cos(); - double xfmat[4][4], m4[4][4]; + MAT4 xfmat, m4; double xfsca, dtmp; int i, icnt; @@ -132,7 +132,6 @@ done: } -#ifdef INVXF int invxf(ret, ac, av) /* invert transform specification */ register XF *ret; @@ -140,7 +139,7 @@ int ac; char *av[]; { double atof(), sin(), cos(); - double xfmat[4][4], m4[4][4]; + MAT4 xfmat, m4; double xfsca, dtmp; int i, icnt; @@ -257,4 +256,3 @@ char *av[]; xf(&fx->f, ac, av); return(invxf(&fx->b, ac, av)); } -#endif