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.27 by greg, Wed Jan 12 16:46:45 1994 UTC vs.
Revision 2.28 by greg, Wed Dec 21 09:51:49 1994 UTC

# Line 23 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
23   extern double  specthresh;              /* specular sampling threshold */
24   extern double  specjitter;              /* specular sampling jitter */
25  
26 + extern int  backvis;                    /* back faces visible? */
27 +
28   static  gaussamp();
29  
30   /*
# Line 173 | Line 175 | register RAY  *r;
175          nd.alpha2 = m->oargs.farg[4];
176          if ((nd.alpha2 *= nd.alpha2) <= FTINY)
177                  nd.specfl |= SP_PURE;
178 <                                                /* reorient if necessary */
179 <        if (r->rod < 0.0)
180 <                flipsurface(r);
178 >                                                /* check for back side */
179 >        if (r->rod < 0.0) {
180 >                if (!backvis && m->otype != MAT_TRANS) {
181 >                        raytrans(r);
182 >                        return(1);
183 >                }
184 >                flipsurface(r);                 /* reorient if backvis */
185 >        }
186                                                  /* get modifiers */
187          raytexture(r, m->omod);
188          nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines