ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/normal.c
(Generate patch)

Comparing ray/src/rt/normal.c (file contents):
Revision 2.40 by greg, Mon Mar 3 00:10:51 2003 UTC vs.
Revision 2.41 by greg, Wed Mar 12 04:59:05 2003 UTC

# Line 1 | Line 1
1   #ifndef lint
2 < static const char       RCSid[] = "$Id$";
2 > static const char RCSid[] = "$Id$";
3   #endif
4   /*
5   *  normal.c - shading function for normal materials.
# Line 197 | Line 197 | register RAY  *r;
197          nd.alpha2 = m->oargs.farg[4];
198          if ((nd.alpha2 *= nd.alpha2) <= FTINY)
199                  nd.specfl |= SP_PURE;
200        if (r->ro != NULL && isflat(r->ro->otype))
201                nd.specfl |= SP_FLAT;
200  
201 <        if (hastexture = DOT(r->pert,r->pert) > FTINY*FTINY)
201 >        if (hastexture = (DOT(r->pert,r->pert) > FTINY*FTINY)) {
202                  nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
203 <        else {
203 >        } else {
204                  VCOPY(nd.pnorm, r->ron);
205                  nd.pdot = r->rod;
206 +                if (r->ro != NULL && isflat(r->ro->otype))
207 +                        nd.specfl |= SP_FLAT;
208          }
209          if (nd.pdot < .001)
210                  nd.pdot = .001;                 /* non-zero for dirnorm() */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines