--- ray/src/common/dircode.c 2003/06/20 00:25:49 2.5 +++ ray/src/common/dircode.c 2012/11/09 01:35:00 2.8 @@ -1,13 +1,13 @@ #ifndef lint -static const char RCSid[] = "$Id: dircode.c,v 2.5 2003/06/20 00:25:49 greg Exp $"; +static const char RCSid[] = "$Id: dircode.c,v 2.8 2012/11/09 01:35:00 greg Exp $"; #endif /* - * Compute a 4-byte direction code (int32 type defined in standard.h). + * Compute a 4-byte direction code (externals defined in rtmath.h). * * Mean accuracy is 0.0022 degrees, with a maximum error of 0.0058 degrees. */ -#include "standard.h" +#include "rtmath.h" #define DCSCALE 11585.2 /* (1<<13)*sqrt(2) */ #define FXNEG 01 @@ -20,12 +20,11 @@ static const char RCSid[] = "$Id: dircode.c,v 2.5 2003 #define FMASK 0x1fff int32 -encodedir(dv) /* encode a normalized direction vector */ -FVECT dv; +encodedir(FVECT dv) /* encode a normalized direction vector */ { - register int32 dc = 0; + int32 dc = 0; int cd[3], cm; - register int i; + int i; for (i = 0; i < 3; i++) if (dv[i] < 0.) { @@ -33,6 +32,8 @@ FVECT dv; dc |= FXNEG<>F1SFT & FMASK)+.5)*(1./DCSCALE); d2 = ((dc>>F2SFT & FMASK)+.5)*(1./DCSCALE); der = sqrt(1. - d1*d1 - d2*d2); @@ -76,8 +79,7 @@ register int32 dc; double -dir2diff(dc1, dc2) /* approx. radians^2 between directions */ -int32 dc1, dc2; +dir2diff(int32 dc1, int32 dc2) /* approx. radians^2 between directions */ { FVECT v1, v2; @@ -89,9 +91,7 @@ int32 dc1, dc2; double -fdir2diff(dc1, v2) /* approx. radians^2 between directions */ -int32 dc1; -register FVECT v2; +fdir2diff(int32 dc1, FVECT v2) /* approx. radians^2 between directions */ { FVECT v1;