--- ray/src/rt/o_face.c 1989/04/19 22:24:26 1.3 +++ ray/src/rt/o_face.c 2003/02/25 02:47:23 2.3 @@ -1,15 +1,12 @@ -/* Copyright (c) 1986 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: o_face.c,v 2.3 2003/02/25 02:47:23 greg Exp $"; #endif - /* * o_face.c - compute ray intersection with faces. - * - * 8/29/85 */ +#include "copyright.h" + #include "ray.h" #include "face.h" @@ -57,8 +54,7 @@ register RAY *r; VCOPY(r->rop, pisect); VCOPY(r->ron, f->norm); r->rod = rdot; - r->rofs = 1.0; setident4(r->rofx); - r->robs = 1.0; setident4(r->robx); + r->rox = NULL; return(1); /* hit */ }