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.24 by greg, Mon Mar 8 12:37:27 1993 UTC vs.
Revision 2.52 by greg, Fri May 7 15:44:52 2010 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1992 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  normal.c - shading function for normal materials.
6   *
# Line 14 | Line 11 | static char SCCSid[] = "$SunId$ LBL";
11   *     Later changes described in delta comments.
12   */
13  
14 < #include  "ray.h"
14 > #include "copyright.h"
15  
16 + #include  "ray.h"
17 + #include  "ambient.h"
18 + #include  "source.h"
19   #include  "otypes.h"
20 <
20 > #include  "rtotypes.h"
21   #include  "random.h"
22  
23 < extern double  specthresh;              /* specular sampling threshold */
24 < extern double  specjitter;              /* specular sampling jitter */
23 > #ifndef  MAXITER
24 > #define  MAXITER        10              /* maximum # specular ray attempts */
25 > #endif
26 >                                        /* estimate of Fresnel function */
27 > #define  FRESNE(ci)     (exp(-5.85*(ci)) - 0.00287989916)
28 > #define  FRESTHRESH     0.017999        /* minimum specularity for approx. */
29  
26 static  gaussamp();
30  
31   /*
32   *      This routine implements the isotropic Gaussian
# Line 38 | Line 41 | static  gaussamp();
41   *      red     grn     blu     rspec   rough   trans   tspec
42   */
43  
41 #define  BSPEC(m)       (6.0)           /* specularity parameter b */
42
44                                  /* specularity flags */
45   #define  SP_REFL        01              /* has reflected specular component */
46   #define  SP_TRAN        02              /* has transmitted specular */
# Line 64 | Line 65 | typedef struct {
65          double  pdot;           /* perturbed dot product */
66   }  NORMDAT;             /* normal material data */
67  
68 + static srcdirf_t dirnorm;
69 + static void gaussamp(RAY  *r, NORMDAT  *np);
70  
71 < dirnorm(cval, np, ldir, omega)          /* compute source contribution */
72 < COLOR  cval;                    /* returned coefficient */
73 < register NORMDAT  *np;          /* material data */
74 < FVECT  ldir;                    /* light source direction */
75 < double  omega;                  /* light source size */
71 >
72 > static void
73 > dirnorm(                /* compute source contribution */
74 >        COLOR  cval,                    /* returned coefficient */
75 >        void  *nnp,             /* material data */
76 >        FVECT  ldir,                    /* light source direction */
77 >        double  omega                   /* light source size */
78 > )
79   {
80 +        register NORMDAT *np = nnp;
81          double  ldot;
82 +        double  lrdiff, ltdiff;
83          double  dtmp, d2;
84          FVECT  vtmp;
85          COLOR  ctmp;
# Line 83 | Line 91 | double  omega;                 /* light source size */
91          if (ldot < 0.0 ? np->trans <= FTINY : np->trans >= 1.0-FTINY)
92                  return;         /* wrong side */
93  
94 <        if (ldot > FTINY && np->rdiff > FTINY) {
94 >                                /* Fresnel estimate */
95 >        lrdiff = np->rdiff;
96 >        ltdiff = np->tdiff;
97 >        if (np->specfl & SP_PURE && np->rspec >= FRESTHRESH &&
98 >                        (lrdiff > FTINY) | (ltdiff > FTINY)) {
99 >                dtmp = 1. - FRESNE(fabs(ldot));
100 >                lrdiff *= dtmp;
101 >                ltdiff *= dtmp;
102 >        }
103 >
104 >        if (ldot > FTINY && lrdiff > FTINY) {
105                  /*
106                   *  Compute and add diffuse reflected component to returned
107                   *  color.  The diffuse reflected component will always be
108                   *  modified by the color of the material.
109                   */
110                  copycolor(ctmp, np->mcolor);
111 <                dtmp = ldot * omega * np->rdiff / PI;
111 >                dtmp = ldot * omega * lrdiff * (1.0/PI);
112                  scalecolor(ctmp, dtmp);
113                  addcolor(cval, ctmp);
114          }
# Line 103 | Line 121 | double  omega;                 /* light source size */
121                  dtmp = np->alpha2;
122                                                  /* + source if flat */
123                  if (np->specfl & SP_FLAT)
124 <                        dtmp += omega/(4.0*PI);
124 >                        dtmp += omega * (0.25/PI);
125                                                  /* half vector */
126                  vtmp[0] = ldir[0] - np->rp->rdir[0];
127                  vtmp[1] = ldir[1] - np->rp->rdir[1];
# Line 112 | Line 130 | double  omega;                 /* light source size */
130                  d2 *= d2;
131                  d2 = (DOT(vtmp,vtmp) - d2) / d2;
132                                                  /* gaussian */
133 <                dtmp = exp(-d2/dtmp)/(4.*PI*dtmp);
133 >                dtmp = exp(-d2/dtmp)/(4.*PI * np->pdot * dtmp);
134                                                  /* worth using? */
135                  if (dtmp > FTINY) {
136                          copycolor(ctmp, np->scolor);
137 <                        dtmp *= omega * sqrt(ldot/np->pdot);
137 >                        dtmp *= omega;
138                          scalecolor(ctmp, dtmp);
139                          addcolor(cval, ctmp);
140                  }
141          }
142 <        if (ldot < -FTINY && np->tdiff > FTINY) {
142 >        if (ldot < -FTINY && ltdiff > FTINY) {
143                  /*
144                   *  Compute diffuse transmission.
145                   */
146                  copycolor(ctmp, np->mcolor);
147 <                dtmp = -ldot * omega * np->tdiff / PI;
147 >                dtmp = -ldot * omega * ltdiff * (1.0/PI);
148                  scalecolor(ctmp, dtmp);
149                  addcolor(cval, ctmp);
150          }
# Line 136 | Line 154 | double  omega;                 /* light source size */
154                   *  is always modified by material color.
155                   */
156                                                  /* roughness + source */
157 <                dtmp = np->alpha2 + omega/PI;
157 >                dtmp = np->alpha2 + omega*(1.0/PI);
158                                                  /* gaussian */
159 <                dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
159 >                 dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
160                                                  /* worth using? */
161                  if (dtmp > FTINY) {
162                          copycolor(ctmp, np->mcolor);
# Line 150 | Line 168 | double  omega;                 /* light source size */
168   }
169  
170  
171 < m_normal(m, r)                  /* color a ray that hit something normal */
172 < register OBJREC  *m;
173 < register RAY  *r;
171 > extern int
172 > m_normal(                       /* color a ray that hit something normal */
173 >        register OBJREC  *m,
174 >        register RAY  *r
175 > )
176   {
177          NORMDAT  nd;
178 +        double  fest;
179          double  transtest, transdist;
180 <        double  dtmp;
180 >        double  mirtest, mirdist;
181 >        int     hastexture;
182 >        double  d;
183          COLOR  ctmp;
184          register int  i;
185                                                  /* easy shadow test */
186          if (r->crtype & SHADOW && m->otype != MAT_TRANS)
187 <                return;
187 >                return(1);
188  
189          if (m->oargs.nfargs != (m->otype == MAT_TRANS ? 7 : 5))
190                  objerror(m, USER, "bad number of arguments");
191 +                                                /* check for back side */
192 +        if (r->rod < 0.0) {
193 +                if (!backvis && m->otype != MAT_TRANS) {
194 +                        raytrans(r);
195 +                        return(1);
196 +                }
197 +                raytexture(r, m->omod);
198 +                flipsurface(r);                 /* reorient if backvis */
199 +        } else
200 +                raytexture(r, m->omod);
201          nd.mp = m;
202          nd.rp = r;
203                                                  /* get material color */
# Line 176 | Line 209 | register RAY  *r;
209          nd.alpha2 = m->oargs.farg[4];
210          if ((nd.alpha2 *= nd.alpha2) <= FTINY)
211                  nd.specfl |= SP_PURE;
212 <                                                /* reorient if necessary */
213 <        if (r->rod < 0.0)
214 <                flipsurface(r);
215 <                                                /* get modifiers */
216 <        raytexture(r, m->omod);
217 <        nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
212 >
213 >        if ( (hastexture = (DOT(r->pert,r->pert) > FTINY*FTINY)) ) {
214 >                nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
215 >        } else {
216 >                VCOPY(nd.pnorm, r->ron);
217 >                nd.pdot = r->rod;
218 >        }
219 >        if (r->ro != NULL && isflat(r->ro->otype))
220 >                nd.specfl |= SP_FLAT;
221          if (nd.pdot < .001)
222                  nd.pdot = .001;                 /* non-zero for dirnorm() */
223          multcolor(nd.mcolor, r->pcol);          /* modify material color */
224 <        transtest = 0;
225 <                                                /* get specular component */
226 <        if ((nd.rspec = m->oargs.farg[3]) > FTINY) {
227 <                nd.specfl |= SP_REFL;
228 <                                                /* compute specular color */
229 <                if (m->otype == MAT_METAL)
230 <                        copycolor(nd.scolor, nd.mcolor);
231 <                else
232 <                        setcolor(nd.scolor, 1.0, 1.0, 1.0);
197 <                scalecolor(nd.scolor, nd.rspec);
198 <                                                /* improved model */
199 <                dtmp = exp(-BSPEC(m)*nd.pdot);
200 <                for (i = 0; i < 3; i++)
201 <                        colval(nd.scolor,i) += (1.0-colval(nd.scolor,i))*dtmp;
202 <                nd.rspec += (1.0-nd.rspec)*dtmp;
203 <                                                /* check threshold */
204 <                if (!(nd.specfl & SP_PURE) &&
205 <                                specthresh > FTINY &&
206 <                                (specthresh >= 1.-FTINY ||
207 <                                specthresh + .05 - .1*frandom() > nd.rspec))
208 <                        nd.specfl |= SP_RBLT;
209 <                                                /* compute reflected ray */
210 <                for (i = 0; i < 3; i++)
211 <                        nd.vrefl[i] = r->rdir[i] + 2.0*nd.pdot*nd.pnorm[i];
212 <                if (DOT(nd.vrefl, r->ron) <= FTINY)     /* penetration? */
213 <                        for (i = 0; i < 3; i++)         /* safety measure */
214 <                                nd.vrefl[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
215 <
216 <                if (!(r->crtype & SHADOW) && nd.specfl & SP_PURE) {
217 <                        RAY  lr;
218 <                        if (rayorigin(&lr, r, REFLECTED, nd.rspec) == 0) {
219 <                                VCOPY(lr.rdir, nd.vrefl);
220 <                                rayvalue(&lr);
221 <                                multcolor(lr.rcol, nd.scolor);
222 <                                addcolor(r->rcol, lr.rcol);
223 <                        }
224 <                }
225 <        }
224 >        mirtest = transtest = 0;
225 >        mirdist = transdist = r->rot;
226 >        nd.rspec = m->oargs.farg[3];
227 >                                                /* compute Fresnel approx. */
228 >        if (nd.specfl & SP_PURE && nd.rspec >= FRESTHRESH) {
229 >                fest = FRESNE(r->rod);
230 >                nd.rspec += fest*(1. - nd.rspec);
231 >        } else
232 >                fest = 0.;
233                                                  /* compute transmission */
234          if (m->otype == MAT_TRANS) {
235                  nd.trans = m->oargs.farg[5]*(1.0 - nd.rspec);
# Line 231 | Line 238 | register RAY  *r;
238                  if (nd.tspec > FTINY) {
239                          nd.specfl |= SP_TRAN;
240                                                          /* check threshold */
241 <                        if (!(nd.specfl & SP_PURE) && specthresh > FTINY &&
242 <                                        (specthresh >= 1.-FTINY ||
236 <                                specthresh + .05 - .1*frandom() > nd.tspec))
241 >                        if (!(nd.specfl & SP_PURE) &&
242 >                                        specthresh >= nd.tspec-FTINY)
243                                  nd.specfl |= SP_TBLT;
244 <                        if (r->crtype & SHADOW ||
239 <                                        DOT(r->pert,r->pert) <= FTINY*FTINY) {
244 >                        if (!hastexture || r->crtype & SHADOW) {
245                                  VCOPY(nd.prdir, r->rdir);
246                                  transtest = 2;
247                          } else {
# Line 251 | Line 256 | register RAY  *r;
256          } else
257                  nd.tdiff = nd.tspec = nd.trans = 0.0;
258                                                  /* transmitted ray */
259 <        if ((nd.specfl&(SP_TRAN|SP_PURE)) == (SP_TRAN|SP_PURE)) {
259 >        if ((nd.specfl&(SP_TRAN|SP_PURE|SP_TBLT)) == (SP_TRAN|SP_PURE)) {
260                  RAY  lr;
261 <                if (rayorigin(&lr, r, TRANS, nd.tspec) == 0) {
261 >                copycolor(lr.rcoef, nd.mcolor); /* modified by color */
262 >                scalecolor(lr.rcoef, nd.tspec);
263 >                if (rayorigin(&lr, TRANS, r, lr.rcoef) == 0) {
264                          VCOPY(lr.rdir, nd.prdir);
265                          rayvalue(&lr);
266 <                        scalecolor(lr.rcol, nd.tspec);
260 <                        multcolor(lr.rcol, nd.mcolor);  /* modified by color */
266 >                        multcolor(lr.rcol, lr.rcoef);
267                          addcolor(r->rcol, lr.rcol);
268                          transtest *= bright(lr.rcol);
269                          transdist = r->rot + lr.rt;
# Line 265 | Line 271 | register RAY  *r;
271          } else
272                  transtest = 0;
273  
274 <        if (r->crtype & SHADOW)                 /* the rest is shadow */
275 <                return;
274 >        if (r->crtype & SHADOW) {               /* the rest is shadow */
275 >                r->rt = transdist;
276 >                return(1);
277 >        }
278 >                                                /* get specular reflection */
279 >        if (nd.rspec > FTINY) {
280 >                nd.specfl |= SP_REFL;
281 >                                                /* compute specular color */
282 >                if (m->otype != MAT_METAL) {
283 >                        setcolor(nd.scolor, nd.rspec, nd.rspec, nd.rspec);
284 >                } else if (fest > FTINY) {
285 >                        d = nd.rspec*(1. - fest);
286 >                        for (i = 0; i < 3; i++)
287 >                                nd.scolor[i] = fest + nd.mcolor[i]*d;
288 >                } else {
289 >                        copycolor(nd.scolor, nd.mcolor);
290 >                        scalecolor(nd.scolor, nd.rspec);
291 >                }
292 >                                                /* check threshold */
293 >                if (!(nd.specfl & SP_PURE) && specthresh >= nd.rspec-FTINY)
294 >                        nd.specfl |= SP_RBLT;
295 >                                                /* compute reflected ray */
296 >                for (i = 0; i < 3; i++)
297 >                        nd.vrefl[i] = r->rdir[i] + 2.*nd.pdot*nd.pnorm[i];
298 >                                                /* penetration? */
299 >                if (hastexture && DOT(nd.vrefl, r->ron) <= FTINY)
300 >                        for (i = 0; i < 3; i++)         /* safety measure */
301 >                                nd.vrefl[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
302 >        }
303 >                                                /* reflected ray */
304 >        if ((nd.specfl&(SP_REFL|SP_PURE|SP_RBLT)) == (SP_REFL|SP_PURE)) {
305 >                RAY  lr;
306 >                if (rayorigin(&lr, REFLECTED, r, nd.scolor) == 0) {
307 >                        VCOPY(lr.rdir, nd.vrefl);
308 >                        rayvalue(&lr);
309 >                        multcolor(lr.rcol, lr.rcoef);
310 >                        addcolor(r->rcol, lr.rcol);
311 >                        if (!hastexture && nd.specfl & SP_FLAT) {
312 >                                mirtest = 2.*bright(lr.rcol);
313 >                                mirdist = r->rot + lr.rt;
314 >                        }
315 >                }
316 >        }
317                                                  /* diffuse reflection */
318          nd.rdiff = 1.0 - nd.trans - nd.rspec;
319  
320          if (nd.specfl & SP_PURE && nd.rdiff <= FTINY && nd.tdiff <= FTINY)
321 <                return;                         /* 100% pure specular */
321 >                return(1);                      /* 100% pure specular */
322  
323 <        if (r->ro != NULL && (r->ro->otype == OBJ_FACE ||
324 <                        r->ro->otype == OBJ_RING))
278 <                nd.specfl |= SP_FLAT;
323 >        if (!(nd.specfl & SP_PURE))
324 >                gaussamp(r, &nd);               /* checks *BLT flags */
325  
280        if (nd.specfl & (SP_REFL|SP_TRAN) && !(nd.specfl & SP_PURE))
281                gaussamp(r, &nd);
282
326          if (nd.rdiff > FTINY) {         /* ambient from this side */
327 <                ambient(ctmp, r);
327 >                copycolor(ctmp, nd.mcolor);     /* modified by material color */
328                  if (nd.specfl & SP_RBLT)
329                          scalecolor(ctmp, 1.0-nd.trans);
330                  else
331                          scalecolor(ctmp, nd.rdiff);
332 <                multcolor(ctmp, nd.mcolor);     /* modified by material color */
332 >                multambient(ctmp, r, hastexture ? nd.pnorm : r->ron);
333                  addcolor(r->rcol, ctmp);        /* add to returned color */
334          }
335          if (nd.tdiff > FTINY) {         /* ambient from other side */
336 <                flipsurface(r);
294 <                ambient(ctmp, r);
336 >                copycolor(ctmp, nd.mcolor);     /* modified by color */
337                  if (nd.specfl & SP_TBLT)
338                          scalecolor(ctmp, nd.trans);
339                  else
340                          scalecolor(ctmp, nd.tdiff);
341 <                multcolor(ctmp, nd.mcolor);     /* modified by color */
341 >                flipsurface(r);
342 >                if (hastexture) {
343 >                        FVECT  bnorm;
344 >                        bnorm[0] = -nd.pnorm[0];
345 >                        bnorm[1] = -nd.pnorm[1];
346 >                        bnorm[2] = -nd.pnorm[2];
347 >                        multambient(ctmp, r, bnorm);
348 >                } else
349 >                        multambient(ctmp, r, r->ron);
350                  addcolor(r->rcol, ctmp);
351                  flipsurface(r);
352          }
353                                          /* add direct component */
354          direct(r, dirnorm, &nd);
355                                          /* check distance */
356 <        if (transtest > bright(r->rcol))
356 >        d = bright(r->rcol);
357 >        if (transtest > d)
358                  r->rt = transdist;
359 +        else if (mirtest > d)
360 +                r->rt = mirdist;
361 +
362 +        return(1);
363   }
364  
365  
366 < static
367 < gaussamp(r, np)                 /* sample gaussian specular */
368 < RAY  *r;
369 < register NORMDAT  *np;
366 > static void
367 > gaussamp(                       /* sample gaussian specular */
368 >        RAY  *r,
369 >        register NORMDAT  *np
370 > )
371   {
372          RAY  sr;
373          FVECT  u, v, h;
374          double  rv[2];
375          double  d, sinp, cosp;
376 +        int  niter;
377          register int  i;
378                                          /* quick test */
379          if ((np->specfl & (SP_REFL|SP_RBLT)) != SP_REFL &&
# Line 333 | Line 390 | register NORMDAT  *np;
390          fcross(v, np->pnorm, u);
391                                          /* compute reflection */
392          if ((np->specfl & (SP_REFL|SP_RBLT)) == SP_REFL &&
393 <                        rayorigin(&sr, r, SPECULAR, np->rspec) == 0) {
393 >                        rayorigin(&sr, SPECULAR, r, np->scolor) == 0) {
394                  dimlist[ndims++] = (int)np->mp;
395 <                d = urand(ilhash(dimlist,ndims)+samplendx);
396 <                multisamp(rv, 2, d);
397 <                d = 2.0*PI * rv[0];
398 <                cosp = cos(d);
399 <                sinp = sin(d);
400 <                rv[1] = 1.0 - specjitter*rv[1];
401 <                if (rv[1] <= FTINY)
402 <                        d = 1.0;
403 <                else
404 <                        d = sqrt( np->alpha2 * -log(rv[1]) );
405 <                for (i = 0; i < 3; i++)
406 <                        h[i] = np->pnorm[i] + d*(cosp*u[i] + sinp*v[i]);
407 <                d = -2.0 * DOT(h, r->rdir) / (1.0 + d*d);
408 <                for (i = 0; i < 3; i++)
409 <                        sr.rdir[i] = r->rdir[i] + d*h[i];
410 <                if (DOT(sr.rdir, r->ron) <= FTINY)
411 <                        VCOPY(sr.rdir, np->vrefl);      /* jitter no good */
412 <                rayvalue(&sr);
413 <                multcolor(sr.rcol, np->scolor);
414 <                addcolor(r->rcol, sr.rcol);
395 >                for (niter = 0; niter < MAXITER; niter++) {
396 >                        if (niter)
397 >                                d = frandom();
398 >                        else
399 >                                d = urand(ilhash(dimlist,ndims)+samplendx);
400 >                        multisamp(rv, 2, d);
401 >                        d = 2.0*PI * rv[0];
402 >                        cosp = tcos(d);
403 >                        sinp = tsin(d);
404 >                        rv[1] = 1.0 - specjitter*rv[1];
405 >                        if (rv[1] <= FTINY)
406 >                                d = 1.0;
407 >                        else
408 >                                d = sqrt( np->alpha2 * -log(rv[1]) );
409 >                        for (i = 0; i < 3; i++)
410 >                                h[i] = np->pnorm[i] + d*(cosp*u[i] + sinp*v[i]);
411 >                        d = -2.0 * DOT(h, r->rdir) / (1.0 + d*d);
412 >                        for (i = 0; i < 3; i++)
413 >                                sr.rdir[i] = r->rdir[i] + d*h[i];
414 >                        if (DOT(sr.rdir, r->ron) > FTINY) {
415 >                                rayvalue(&sr);
416 >                                multcolor(sr.rcol, sr.rcoef);
417 >                                addcolor(r->rcol, sr.rcol);
418 >                                break;
419 >                        }
420 >                }
421                  ndims--;
422          }
423                                          /* compute transmission */
424 +        copycolor(sr.rcoef, np->mcolor);        /* modified by color */
425 +        scalecolor(sr.rcoef, np->tspec);
426          if ((np->specfl & (SP_TRAN|SP_TBLT)) == SP_TRAN &&
427 <                        rayorigin(&sr, r, SPECULAR, np->tspec) == 0) {
427 >                        rayorigin(&sr, SPECULAR, r, sr.rcoef) == 0) {
428                  dimlist[ndims++] = (int)np->mp;
429 <                d = urand(ilhash(dimlist,ndims)+1823+samplendx);
430 <                multisamp(rv, 2, d);
431 <                d = 2.0*PI * rv[0];
432 <                cosp = cos(d);
433 <                sinp = sin(d);
434 <                rv[1] = 1.0 - specjitter*rv[1];
435 <                if (rv[1] <= FTINY)
436 <                        d = 1.0;
437 <                else
438 <                        d = sqrt( -log(rv[1]) * np->alpha2 );
439 <                for (i = 0; i < 3; i++)
440 <                        sr.rdir[i] = np->prdir[i] + d*(cosp*u[i] + sinp*v[i]);
441 <                if (DOT(sr.rdir, r->ron) < -FTINY)
442 <                        normalize(sr.rdir);             /* OK, normalize */
443 <                else
444 <                        VCOPY(sr.rdir, np->prdir);      /* else no jitter */
445 <                rayvalue(&sr);
446 <                scalecolor(sr.rcol, np->tspec);
447 <                multcolor(sr.rcol, np->mcolor);         /* modified by color */
448 <                addcolor(r->rcol, sr.rcol);
429 >                for (niter = 0; niter < MAXITER; niter++) {
430 >                        if (niter)
431 >                                d = frandom();
432 >                        else
433 >                                d = urand(ilhash(dimlist,ndims)+1823+samplendx);
434 >                        multisamp(rv, 2, d);
435 >                        d = 2.0*PI * rv[0];
436 >                        cosp = tcos(d);
437 >                        sinp = tsin(d);
438 >                        rv[1] = 1.0 - specjitter*rv[1];
439 >                        if (rv[1] <= FTINY)
440 >                                d = 1.0;
441 >                        else
442 >                                d = sqrt( np->alpha2 * -log(rv[1]) );
443 >                        for (i = 0; i < 3; i++)
444 >                                sr.rdir[i] = np->prdir[i] + d*(cosp*u[i] + sinp*v[i]);
445 >                        if (DOT(sr.rdir, r->ron) < -FTINY) {
446 >                                normalize(sr.rdir);     /* OK, normalize */
447 >                                rayvalue(&sr);
448 >                                multcolor(sr.rcol, sr.rcoef);
449 >                                addcolor(r->rcol, sr.rcol);
450 >                                break;
451 >                        }
452 >                }
453                  ndims--;
454          }
455   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines