--- ray/src/rt/source.c 1994/01/13 10:43:36 2.15 +++ ray/src/rt/source.c 1995/04/25 19:51:38 2.16 @@ -68,6 +68,9 @@ marksources() /* find and mark source objects */ o->otype != OBJ_SOURCE && m->oargs.farg[3] <= FTINY) continue; /* don't bother */ + if (m->oargs.farg[0] <= FTINY && m->oargs.farg[1] <= FTINY && + m->oargs.farg[2] <= FTINY) + continue; /* don't bother */ if (sfun[o->otype].of == NULL || sfun[o->otype].of->setsrc == NULL)