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.53 by greg, Sun Sep 26 15:51:15 2010 UTC vs.
Revision 2.55 by greg, Fri Oct 8 22:08:26 2010 UTC

# Line 80 | Line 80 | dirnorm(               /* compute source contribution */
80          register NORMDAT *np = nnp;
81          double  ldot;
82          double  lrdiff, ltdiff;
83 <        double  dtmp, d2;
83 >        double  dtmp, d2, d3, d4;
84          FVECT  vtmp;
85          COLOR  ctmp;
86  
# Line 115 | Line 115 | dirnorm(               /* compute source contribution */
115          if (ldot > FTINY && (np->specfl&(SP_REFL|SP_PURE)) == SP_REFL) {
116                  /*
117                   *  Compute specular reflection coefficient using
118 <                 *  gaussian distribution model.
118 >                 *  Gaussian distribution model.
119                   */
120                                                  /* roughness */
121                  dtmp = np->alpha2;
# Line 128 | Line 128 | dirnorm(               /* compute source contribution */
128                  vtmp[2] = ldir[2] - np->rp->rdir[2];
129                  d2 = DOT(vtmp, np->pnorm);
130                  d2 *= d2;
131 <                d2 = (DOT(vtmp,vtmp) - d2) / d2;
132 <                                                /* gaussian */
133 <                dtmp = exp(-d2/dtmp)/(4.*PI * np->pdot * dtmp);
131 >                d3 = DOT(vtmp,vtmp);
132 >                d4 = (d3 - d2) / d2;
133 >                                                /* new W-G-M-D model */
134 >                dtmp = exp(-d4/dtmp) * d3 / (PI * d2*d2 * dtmp);
135                                                  /* worth using? */
136                  if (dtmp > FTINY) {
137                          copycolor(ctmp, np->scolor);
138 <                        dtmp *= omega;
138 >                        dtmp *= ldot * omega;
139                          scalecolor(ctmp, dtmp);
140                          addcolor(cval, ctmp);
141                  }
# Line 155 | Line 156 | dirnorm(               /* compute source contribution */
156                   */
157                                                  /* roughness + source */
158                  dtmp = np->alpha2 + omega*(1.0/PI);
159 <                                                /* gaussian */
159 >                                                /* Gaussian */
160                  dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
161                                                  /* worth using? */
162                  if (dtmp > FTINY) {
# Line 293 | Line 294 | m_normal(                      /* color a ray that hit something normal *
294                  if (!(nd.specfl & SP_PURE) && specthresh >= nd.rspec-FTINY)
295                          nd.specfl |= SP_RBLT;
296                                                  /* compute reflected ray */
297 <                for (i = 0; i < 3; i++)
297 <                        nd.vrefl[i] = r->rdir[i] + 2.*nd.pdot*nd.pnorm[i];
297 >                VSUM(nd.vrefl, r->rdir, nd.pnorm, 2.*nd.pdot);
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];
300 >                        VSUM(nd.vrefl, r->rdir, r->ron, 2.*r->rod);
301                  checknorm(nd.vrefl);
302          }
303                                                  /* reflected ray */
# Line 365 | Line 364 | m_normal(                      /* color a ray that hit something normal *
364  
365  
366   static void
367 < gaussamp(                       /* sample gaussian specular */
367 > gaussamp(                       /* sample Gaussian specular */
368          RAY  *r,
369          register NORMDAT  *np
370   )
# Line 374 | Line 373 | gaussamp(                      /* sample gaussian specular */
373          FVECT  u, v, h;
374          double  rv[2];
375          double  d, sinp, cosp;
376 <        int  niter;
376 >        COLOR   scol;
377 >        int  niter, ns2go;
378          register int  i;
379                                          /* quick test */
380          if ((np->specfl & (SP_REFL|SP_RBLT)) != SP_REFL &&
# Line 392 | Line 392 | gaussamp(                      /* sample gaussian specular */
392                                          /* compute reflection */
393          if ((np->specfl & (SP_REFL|SP_RBLT)) == SP_REFL &&
394                          rayorigin(&sr, SPECULAR, r, np->scolor) == 0) {
395 +                copycolor(scol, np->scolor);
396 +                ns2go = 1;
397 +                if (specjitter > 1.5) { /* multiple samples? */
398 +                        ns2go = specjitter*r->rweight + .5;
399 +                        if ((d = bright(scol)) <= minweight*ns2go)
400 +                                ns2go = d/minweight;
401 +                        if (ns2go > 1) {
402 +                                d = 1./ns2go;
403 +                                scalecolor(scol, d);
404 +                        } else
405 +                                ns2go = 1;
406 +                }
407                  dimlist[ndims++] = (int)np->mp;
408 <                for (niter = 0; niter < MAXITER; niter++) {
409 <                        if (niter)
408 >                for (niter = ns2go*MAXITER; (ns2go > 0) & (niter > 0); niter--) {
409 >                        if (specjitter > 1.5)
410                                  d = frandom();
411                          else
412                                  d = urand(ilhash(dimlist,ndims)+samplendx);
# Line 402 | Line 414 | gaussamp(                      /* sample gaussian specular */
414                          d = 2.0*PI * rv[0];
415                          cosp = tcos(d);
416                          sinp = tsin(d);
417 <                        rv[1] = 1.0 - specjitter*rv[1];
417 >                        if ((0. <= specjitter) & (specjitter < 1.))
418 >                                rv[1] = 1.0 - specjitter*rv[1];
419                          if (rv[1] <= FTINY)
420                                  d = 1.0;
421                          else
# Line 410 | Line 423 | gaussamp(                      /* sample gaussian specular */
423                          for (i = 0; i < 3; i++)
424                                  h[i] = np->pnorm[i] + d*(cosp*u[i] + sinp*v[i]);
425                          d = -2.0 * DOT(h, r->rdir) / (1.0 + d*d);
426 <                        for (i = 0; i < 3; i++)
427 <                                sr.rdir[i] = r->rdir[i] + d*h[i];
428 <                        if (DOT(sr.rdir, r->ron) > FTINY) {
429 <                                rayvalue(&sr);
430 <                                multcolor(sr.rcol, sr.rcoef);
431 <                                addcolor(r->rcol, sr.rcol);
432 <                                break;
426 >                        if (d <= np->pdot + FTINY)
427 >                                continue;
428 >                        VSUM(sr.rdir, r->rdir, h, d);
429 >                        if (DOT(sr.rdir, r->ron) <= FTINY)
430 >                                continue;
431 >                        checknorm(sr.rdir);
432 >                        if (specjitter > 1.5) { /* adjusted W-G-M-D weight */
433 >                                copycolor(sr.rcoef, scol);
434 >                                d = 2.*(1. - np->pdot/d);
435 >                                scalecolor(sr.rcoef, d);
436 >                                rayclear(&sr);
437                          }
438 +                        rayvalue(&sr);
439 +                        multcolor(sr.rcol, sr.rcoef);
440 +                        addcolor(r->rcol, sr.rcol);
441 +                        --ns2go;
442                  }
443                  ndims--;
444          }
# Line 426 | Line 447 | gaussamp(                      /* sample gaussian specular */
447          scalecolor(sr.rcoef, np->tspec);
448          if ((np->specfl & (SP_TRAN|SP_TBLT)) == SP_TRAN &&
449                          rayorigin(&sr, SPECULAR, r, sr.rcoef) == 0) {
450 +                copycolor(scol, sr.rcoef);
451 +                ns2go = 1;
452 +                if (specjitter > 1.5) { /* multiple samples? */
453 +                        ns2go = specjitter*r->rweight + .5;
454 +                        if ((d = bright(scol)) <= minweight*ns2go)
455 +                                ns2go = d/minweight;
456 +                        if (ns2go > 1) {
457 +                                d = 1./ns2go;
458 +                                scalecolor(scol, d);
459 +                        } else
460 +                                ns2go = 1;
461 +                }
462                  dimlist[ndims++] = (int)np->mp;
463 <                for (niter = 0; niter < MAXITER; niter++) {
464 <                        if (niter)
463 >                for (niter = ns2go*MAXITER; (ns2go > 0) & (niter > 0); niter--) {
464 >                        if (specjitter > 1.5)
465                                  d = frandom();
466                          else
467                                  d = urand(ilhash(dimlist,ndims)+1823+samplendx);
# Line 436 | Line 469 | gaussamp(                      /* sample gaussian specular */
469                          d = 2.0*PI * rv[0];
470                          cosp = tcos(d);
471                          sinp = tsin(d);
472 <                        rv[1] = 1.0 - specjitter*rv[1];
472 >                        if ((0. <= specjitter) & (specjitter < 1.))
473 >                                rv[1] = 1.0 - specjitter*rv[1];
474                          if (rv[1] <= FTINY)
475                                  d = 1.0;
476                          else
477                                  d = sqrt( np->alpha2 * -log(rv[1]) );
478                          for (i = 0; i < 3; i++)
479                                  sr.rdir[i] = np->prdir[i] + d*(cosp*u[i] + sinp*v[i]);
480 <                        if (DOT(sr.rdir, r->ron) < -FTINY) {
481 <                                normalize(sr.rdir);     /* OK, normalize */
482 <                                rayvalue(&sr);
483 <                                multcolor(sr.rcol, sr.rcoef);
484 <                                addcolor(r->rcol, sr.rcol);
485 <                                break;
480 >                        if (DOT(sr.rdir, r->ron) >= -FTINY)
481 >                                continue;
482 >                        normalize(sr.rdir);     /* OK, normalize */
483 >                        if (specjitter > 1.5) { /* multi-sampling */
484 >                                copycolor(sr.rcoef, scol);
485 >                                rayclear(&sr);
486                          }
487 +                        rayvalue(&sr);
488 +                        multcolor(sr.rcol, sr.rcoef);
489 +                        addcolor(r->rcol, sr.rcol);
490 +                        --ns2go;
491                  }
492                  ndims--;
493          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines