--- ray/src/rt/o_face.c 1989/02/02 10:41:32 1.1 +++ ray/src/rt/o_face.c 1989/02/21 14:56:20 1.2 @@ -41,7 +41,7 @@ register RAY *r; if (rdot <= FTINY && rdot >= -FTINY) /* ray parallels plane */ t = FHUGE; else - t = (DOT(r->rorg, f->norm) - f->const) / rdot; + t = (DOT(r->rorg, f->norm) - f->offset) / rdot; if (t <= FTINY || t >= r->rot) /* not good enough */ return(0);