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.42 by greg, Wed Mar 12 17:26:58 2003 UTC vs.
Revision 2.83 by greg, Wed Nov 15 18:02:53 2023 UTC

# Line 14 | Line 14 | static const char RCSid[] = "$Id$";
14   #include "copyright.h"
15  
16   #include  "ray.h"
17 <
17 > #include  "ambient.h"
18 > #include  "source.h"
19   #include  "otypes.h"
20 <
20 > #include  "rtotypes.h"
21   #include  "random.h"
22 + #include  "pmapmat.h"
23  
24   #ifndef  MAXITER
25   #define  MAXITER        10              /* maximum # specular ray attempts */
26   #endif
27                                          /* estimate of Fresnel function */
28 < #define  FRESNE(ci)     (exp(-6.0*(ci)) - 0.00247875217)
28 > #define  FRESNE(ci)     (exp(-5.85*(ci)) - 0.00202943064)
29 > #define  FRESTHRESH     0.017999        /* minimum specularity for approx. */
30  
28 static void  gaussamp();
31  
32   /*
33   *      This routine implements the isotropic Gaussian
# Line 52 | Line 54 | typedef struct {
54          OBJREC  *mp;            /* material pointer */
55          RAY  *rp;               /* ray pointer */
56          short  specfl;          /* specularity flags, defined above */
57 <        COLOR  mcolor;          /* color of this material */
58 <        COLOR  scolor;          /* color of specular component */
57 >        SCOLOR  mcolor;         /* color of this material */
58 >        SCOLOR  scolor;         /* color of specular component */
59          FVECT  vrefl;           /* vector in direction of reflected ray */
60          FVECT  prdir;           /* vector in transmitted direction */
61          double  alpha2;         /* roughness squared */
# Line 64 | Line 66 | typedef struct {
66          double  pdot;           /* perturbed dot product */
67   }  NORMDAT;             /* normal material data */
68  
69 + static void gaussamp(NORMDAT  *np);
70  
71 +
72   static void
73 < dirnorm(cval, np, ldir, omega)          /* compute source contribution */
74 < COLOR  cval;                    /* returned coefficient */
75 < register NORMDAT  *np;          /* material data */
76 < FVECT  ldir;                    /* light source direction */
77 < double  omega;                  /* light source size */
73 > dirnorm(                /* compute source contribution */
74 >        SCOLOR  scval,                  /* returned coefficient */
75 >        void  *nnp,                     /* material data */
76 >        FVECT  ldir,                    /* light source direction */
77 >        double  omega                   /* light source size */
78 > )
79   {
80 +        NORMDAT *np = nnp;
81          double  ldot;
82 <        double  ldiff;
83 <        double  dtmp, d2;
82 >        double  lrdiff, ltdiff;
83 >        double  dtmp, d2, d3, d4;
84          FVECT  vtmp;
85 <        COLOR  ctmp;
85 >        SCOLOR  sctmp;
86  
87 <        setcolor(cval, 0.0, 0.0, 0.0);
87 >        scolorblack(scval);
88  
89          ldot = DOT(np->pnorm, ldir);
90  
# Line 86 | Line 92 | double  omega;                 /* light source size */
92                  return;         /* wrong side */
93  
94                                  /* Fresnel estimate */
95 <        ldiff = np->rdiff;
96 <        if (np->specfl & SP_PURE && (np->rspec > FTINY & ldiff > FTINY))
97 <                ldiff *= 1. - FRESNE(fabs(ldot));
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 && ldiff > FTINY) {
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 * ldiff / PI;
112 <                scalecolor(ctmp, dtmp);
113 <                addcolor(cval, ctmp);
110 >                copyscolor(sctmp, np->mcolor);
111 >                dtmp = ldot * omega * lrdiff * (1.0/PI);
112 >                scalescolor(sctmp, dtmp);
113 >                saddscolor(scval, sctmp);
114          }
115 <        if (ldot > FTINY && (np->specfl&(SP_REFL|SP_PURE)) == SP_REFL) {
115 >
116 >        if ((ldot < -FTINY) & (ltdiff > FTINY)) {
117                  /*
118 +                 *  Compute diffuse transmission.
119 +                 */
120 +                copyscolor(sctmp, np->mcolor);
121 +                dtmp = -ldot * omega * ltdiff * (1.0/PI);
122 +                scalescolor(sctmp, dtmp);
123 +                saddscolor(scval, sctmp);
124 +        }
125 +
126 +        if (ambRayInPmap(np->rp))
127 +                return;         /* specular already in photon map */
128 +
129 +        if ((ldot > FTINY) & ((np->specfl&(SP_REFL|SP_PURE)) == SP_REFL)) {
130 +                /*
131                   *  Compute specular reflection coefficient using
132 <                 *  gaussian distribution model.
132 >                 *  Gaussian distribution model.
133                   */
134                                                  /* roughness */
135                  dtmp = np->alpha2;
136                                                  /* + source if flat */
137                  if (np->specfl & SP_FLAT)
138 <                        dtmp += omega/(4.0*PI);
138 >                        dtmp += omega * (0.25/PI);
139                                                  /* half vector */
140 <                vtmp[0] = ldir[0] - np->rp->rdir[0];
116 <                vtmp[1] = ldir[1] - np->rp->rdir[1];
117 <                vtmp[2] = ldir[2] - np->rp->rdir[2];
140 >                VSUB(vtmp, ldir, np->rp->rdir);
141                  d2 = DOT(vtmp, np->pnorm);
142                  d2 *= d2;
143 <                d2 = (DOT(vtmp,vtmp) - d2) / d2;
144 <                                                /* gaussian */
145 <                dtmp = exp(-d2/dtmp)/(4.*PI*dtmp);
143 >                d3 = DOT(vtmp,vtmp);
144 >                d4 = (d3 - d2) / d2;
145 >                                                /* new W-G-M-D model */
146 >                dtmp = exp(-d4/dtmp) * d3 / (PI * d2*d2 * dtmp);
147                                                  /* worth using? */
148                  if (dtmp > FTINY) {
149 <                        copycolor(ctmp, np->scolor);
150 <                        dtmp *= omega * sqrt(ldot/np->pdot);
151 <                        scalecolor(ctmp, dtmp);
152 <                        addcolor(cval, ctmp);
149 >                        copyscolor(sctmp, np->scolor);
150 >                        dtmp *= ldot * omega;
151 >                        scalescolor(sctmp, dtmp);
152 >                        saddscolor(scval, sctmp);
153                  }
154          }
155 <        if (ldot < -FTINY && np->tdiff > FTINY) {
155 >        
156 >
157 >        if ((ldot < -FTINY) & ((np->specfl&(SP_TRAN|SP_PURE)) == SP_TRAN)) {
158                  /*
133                 *  Compute diffuse transmission.
134                 */
135                copycolor(ctmp, np->mcolor);
136                dtmp = -ldot * omega * np->tdiff / PI;
137                scalecolor(ctmp, dtmp);
138                addcolor(cval, ctmp);
139        }
140        if (ldot < -FTINY && (np->specfl&(SP_TRAN|SP_PURE)) == SP_TRAN) {
141                /*
159                   *  Compute specular transmission.  Specular transmission
160                   *  is always modified by material color.
161                   */
162                                                  /* roughness + source */
163 <                dtmp = np->alpha2 + omega/PI;
164 <                                                /* gaussian */
163 >                dtmp = np->alpha2 + omega*(1.0/PI);
164 >                                                /* Gaussian */
165                  dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
166                                                  /* worth using? */
167                  if (dtmp > FTINY) {
168 <                        copycolor(ctmp, np->mcolor);
168 >                        copyscolor(sctmp, np->mcolor);
169                          dtmp *= np->tspec * omega * sqrt(-ldot/np->pdot);
170 <                        scalecolor(ctmp, dtmp);
171 <                        addcolor(cval, ctmp);
170 >                        scalescolor(sctmp, dtmp);
171 >                        saddscolor(scval, sctmp);
172                  }
173          }
174   }
175  
176  
177   int
178 < m_normal(m, r)                  /* color a ray that hit something normal */
179 < register OBJREC  *m;
180 < register RAY  *r;
178 > m_normal(                       /* color a ray that hit something normal */
179 >        OBJREC  *m,
180 >        RAY  *r
181 > )
182   {
183          NORMDAT  nd;
184          double  fest;
167        double  transtest, transdist;
168        double  mirtest, mirdist;
185          int     hastexture;
186          double  d;
187 <        COLOR  ctmp;
188 <        register int  i;
187 >        SCOLOR  sctmp;
188 >        int  i;
189 >
190 >        /* PMAP: skip transmitted shadow ray if accounted for in photon map */
191 >        /* No longer needed?
192 >        if (shadowRayInPmap(r) || ambRayInPmap(r))
193 >                return(1); */          
194 >                
195                                                  /* easy shadow test */
196          if (r->crtype & SHADOW && m->otype != MAT_TRANS)
197                  return(1);
# Line 178 | Line 200 | register RAY  *r;
200                  objerror(m, USER, "bad number of arguments");
201                                                  /* check for back side */
202          if (r->rod < 0.0) {
203 <                if (!backvis && m->otype != MAT_TRANS) {
203 >                if (!backvis) {
204                          raytrans(r);
205                          return(1);
206                  }
# Line 189 | Line 211 | register RAY  *r;
211          nd.mp = m;
212          nd.rp = r;
213                                                  /* get material color */
214 <        setcolor(nd.mcolor, m->oargs.farg[0],
214 >        setscolor(nd.mcolor, m->oargs.farg[0],
215                             m->oargs.farg[1],
216                             m->oargs.farg[2]);
217                                                  /* get roughness */
# Line 198 | Line 220 | register RAY  *r;
220          if ((nd.alpha2 *= nd.alpha2) <= FTINY)
221                  nd.specfl |= SP_PURE;
222  
223 <        if (hastexture = (DOT(r->pert,r->pert) > FTINY*FTINY)) {
223 >        if ( (hastexture = (DOT(r->pert,r->pert) > FTINY*FTINY)) ) {
224                  nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
225          } else {
226                  VCOPY(nd.pnorm, r->ron);
# Line 208 | Line 230 | register RAY  *r;
230                  nd.specfl |= SP_FLAT;
231          if (nd.pdot < .001)
232                  nd.pdot = .001;                 /* non-zero for dirnorm() */
233 <        multcolor(nd.mcolor, r->pcol);          /* modify material color */
212 <        mirtest = transtest = 0;
213 <        mirdist = transdist = r->rot;
233 >        smultscolor(nd.mcolor, r->pcol);        /* modify material color */
234          nd.rspec = m->oargs.farg[3];
235                                                  /* compute Fresnel approx. */
236 <        if (nd.specfl & SP_PURE && nd.rspec > FTINY) {
237 <                fest = FRESNE(r->rod);
236 >        if (nd.specfl & SP_PURE && nd.rspec >= FRESTHRESH) {
237 >                fest = FRESNE(nd.pdot);
238                  nd.rspec += fest*(1. - nd.rspec);
239          } else
240                  fest = 0.;
# Line 229 | Line 249 | register RAY  *r;
249                          if (!(nd.specfl & SP_PURE) &&
250                                          specthresh >= nd.tspec-FTINY)
251                                  nd.specfl |= SP_TBLT;
252 <                        if (!hastexture || r->crtype & SHADOW) {
252 >                        if (!hastexture || r->crtype & (SHADOW|AMBIENT)) {
253                                  VCOPY(nd.prdir, r->rdir);
234                                transtest = 2;
254                          } else {
255 <                                for (i = 0; i < 3; i++)         /* perturb */
256 <                                        nd.prdir[i] = r->rdir[i] - r->pert[i];
255 >                                                        /* perturb */
256 >                                VSUB(nd.prdir, r->rdir, r->pert);
257                                  if (DOT(nd.prdir, r->ron) < -FTINY)
258                                          normalize(nd.prdir);    /* OK */
259                                  else
# Line 243 | Line 262 | register RAY  *r;
262                  }
263          } else
264                  nd.tdiff = nd.tspec = nd.trans = 0.0;
265 +                                                /* diffuse reflection */
266 +        nd.rdiff = 1.0 - nd.trans - nd.rspec;
267                                                  /* transmitted ray */
268          if ((nd.specfl&(SP_TRAN|SP_PURE|SP_TBLT)) == (SP_TRAN|SP_PURE)) {
269                  RAY  lr;
270 <                if (rayorigin(&lr, r, TRANS, nd.tspec) == 0) {
270 >                copyscolor(lr.rcoef, nd.mcolor);        /* modified by color */
271 >                scalescolor(lr.rcoef, nd.tspec);
272 >                if (rayorigin(&lr, TRANS, r, lr.rcoef) == 0) {
273                          VCOPY(lr.rdir, nd.prdir);
274                          rayvalue(&lr);
275 <                        scalecolor(lr.rcol, nd.tspec);
276 <                        multcolor(lr.rcol, nd.mcolor);  /* modified by color */
277 <                        addcolor(r->rcol, lr.rcol);
278 <                        transtest *= bright(lr.rcol);
279 <                        transdist = r->rot + lr.rt;
275 >                        smultscolor(lr.rcol, lr.rcoef);
276 >                        saddscolor(r->rcol, lr.rcol);
277 >                        if (nd.tspec >= 1.0-FTINY) {
278 >                                                /* completely transparent */
279 >                                smultscolor(lr.mcol, lr.rcoef);
280 >                                copyscolor(r->mcol, lr.mcol);
281 >                                r->rmt = r->rot + lr.rmt;
282 >                                r->rxt = r->rot + lr.rxt;
283 >                        } else if (nd.tspec > nd.tdiff + nd.rdiff)
284 >                                r->rxt = r->rot + raydistance(&lr);
285                  }
286 <        } else
259 <                transtest = 0;
286 >        }
287  
288 <        if (r->crtype & SHADOW) {               /* the rest is shadow */
262 <                r->rt = transdist;
288 >        if (r->crtype & SHADOW)                 /* the rest is shadow */
289                  return(1);
264        }
290                                                  /* get specular reflection */
291          if (nd.rspec > FTINY) {
292                  nd.specfl |= SP_REFL;
293                                                  /* compute specular color */
294                  if (m->otype != MAT_METAL) {
295 <                        setcolor(nd.scolor, nd.rspec, nd.rspec, nd.rspec);
295 >                        setscolor(nd.scolor, nd.rspec, nd.rspec, nd.rspec);
296                  } else if (fest > FTINY) {
297 <                        d = nd.rspec*(1. - fest);
298 <                        for (i = 0; i < 3; i++)
297 >                        d = m->oargs.farg[3]*(1. - fest);
298 >                        for (i = NCSAMP; i--; )
299                                  nd.scolor[i] = fest + nd.mcolor[i]*d;
300                  } else {
301 <                        copycolor(nd.scolor, nd.mcolor);
302 <                        scalecolor(nd.scolor, nd.rspec);
301 >                        copyscolor(nd.scolor, nd.mcolor);
302 >                        scalescolor(nd.scolor, nd.rspec);
303                  }
304                                                  /* check threshold */
305                  if (!(nd.specfl & SP_PURE) && specthresh >= nd.rspec-FTINY)
306                          nd.specfl |= SP_RBLT;
307                                                  /* compute reflected ray */
308 <                for (i = 0; i < 3; i++)
284 <                        nd.vrefl[i] = r->rdir[i] + 2.*nd.pdot*nd.pnorm[i];
308 >                VSUM(nd.vrefl, r->rdir, nd.pnorm, 2.*nd.pdot);
309                                                  /* penetration? */
310                  if (hastexture && DOT(nd.vrefl, r->ron) <= FTINY)
311 <                        for (i = 0; i < 3; i++)         /* safety measure */
312 <                                nd.vrefl[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
311 >                        VSUM(nd.vrefl, r->rdir, r->ron, 2.*r->rod);
312 >                checknorm(nd.vrefl);
313          }
314                                                  /* reflected ray */
315          if ((nd.specfl&(SP_REFL|SP_PURE|SP_RBLT)) == (SP_REFL|SP_PURE)) {
316                  RAY  lr;
317 <                if (rayorigin(&lr, r, REFLECTED, nd.rspec) == 0) {
317 >                if (rayorigin(&lr, REFLECTED, r, nd.scolor) == 0) {
318                          VCOPY(lr.rdir, nd.vrefl);
319                          rayvalue(&lr);
320 <                        multcolor(lr.rcol, nd.scolor);
321 <                        addcolor(r->rcol, lr.rcol);
322 <                        if (!hastexture && nd.specfl & SP_FLAT) {
323 <                                mirtest = 2.*bright(lr.rcol);
324 <                                mirdist = r->rot + lr.rt;
325 <                        }
320 >                        smultscolor(lr.rcol, lr.rcoef);
321 >                        copyscolor(r->mcol, lr.rcol);
322 >                        saddscolor(r->rcol, lr.rcol);
323 >                        r->rmt = r->rot;
324 >                        if (nd.specfl & SP_FLAT &&
325 >                                        !hastexture | (r->crtype & AMBIENT))
326 >                                r->rmt += raydistance(&lr);
327                  }
328          }
304                                                /* diffuse reflection */
305        nd.rdiff = 1.0 - nd.trans - nd.rspec;
329  
330          if (nd.specfl & SP_PURE && nd.rdiff <= FTINY && nd.tdiff <= FTINY)
331                  return(1);                      /* 100% pure specular */
332  
333          if (!(nd.specfl & SP_PURE))
334 <                gaussamp(r, &nd);               /* checks *BLT flags */
334 >                gaussamp(&nd);                  /* checks *BLT flags */
335  
336          if (nd.rdiff > FTINY) {         /* ambient from this side */
337 <                ambient(ctmp, r, hastexture?nd.pnorm:r->ron);
338 <                if (nd.specfl & SP_RBLT)
339 <                        scalecolor(ctmp, 1.0-nd.trans);
340 <                else
341 <                        scalecolor(ctmp, nd.rdiff);
342 <                multcolor(ctmp, nd.mcolor);     /* modified by material color */
320 <                addcolor(r->rcol, ctmp);        /* add to returned color */
337 >                copyscolor(sctmp, nd.mcolor);   /* modified by material color */
338 >                scalescolor(sctmp, nd.rdiff);
339 >                if (nd.specfl & SP_RBLT)        /* add in specular as well? */
340 >                        saddscolor(sctmp, nd.scolor);
341 >                multambient(sctmp, r, hastexture ? nd.pnorm : r->ron);
342 >                saddscolor(r->rcol, sctmp);     /* add to returned color */
343          }
344          if (nd.tdiff > FTINY) {         /* ambient from other side */
345 +                copyscolor(sctmp, nd.mcolor);   /* modified by color */
346 +                if (nd.specfl & SP_TBLT) {
347 +                        scalescolor(sctmp, nd.trans);
348 +                } else {
349 +                        scalescolor(sctmp, nd.tdiff);
350 +                }
351                  flipsurface(r);
352                  if (hastexture) {
353                          FVECT  bnorm;
354                          bnorm[0] = -nd.pnorm[0];
355                          bnorm[1] = -nd.pnorm[1];
356                          bnorm[2] = -nd.pnorm[2];
357 <                        ambient(ctmp, r, bnorm);
357 >                        multambient(sctmp, r, bnorm);
358                  } else
359 <                        ambient(ctmp, r, r->ron);
360 <                if (nd.specfl & SP_TBLT)
333 <                        scalecolor(ctmp, nd.trans);
334 <                else
335 <                        scalecolor(ctmp, nd.tdiff);
336 <                multcolor(ctmp, nd.mcolor);     /* modified by color */
337 <                addcolor(r->rcol, ctmp);
359 >                        multambient(sctmp, r, r->ron);
360 >                saddscolor(r->rcol, sctmp);
361                  flipsurface(r);
362          }
363                                          /* add direct component */
364          direct(r, dirnorm, &nd);
342                                        /* check distance */
343        d = bright(r->rcol);
344        if (transtest > d)
345                r->rt = transdist;
346        else if (mirtest > d)
347                r->rt = mirdist;
365  
366          return(1);
367   }
368  
369  
370   static void
371 < gaussamp(r, np)                 /* sample gaussian specular */
372 < RAY  *r;
373 < register NORMDAT  *np;
371 > gaussamp(                       /* sample Gaussian specular */
372 >        NORMDAT  *np
373 > )
374   {
375          RAY  sr;
376          FVECT  u, v, h;
377          double  rv[2];
378          double  d, sinp, cosp;
379 <        int  niter;
380 <        register int  i;
379 >        SCOLOR  scol;
380 >        int  maxiter, ntrials, nstarget, nstaken;
381 >        int  i;
382                                          /* quick test */
383          if ((np->specfl & (SP_REFL|SP_RBLT)) != SP_REFL &&
384                          (np->specfl & (SP_TRAN|SP_TBLT)) != SP_TRAN)
385                  return;
386                                          /* set up sample coordinates */
387 <        v[0] = v[1] = v[2] = 0.0;
370 <        for (i = 0; i < 3; i++)
371 <                if (np->pnorm[i] < 0.6 && np->pnorm[i] > -0.6)
372 <                        break;
373 <        v[i] = 1.0;
374 <        fcross(u, v, np->pnorm);
375 <        normalize(u);
387 >        getperpendicular(u, np->pnorm, rand_samp);
388          fcross(v, np->pnorm, u);
389                                          /* compute reflection */
390          if ((np->specfl & (SP_REFL|SP_RBLT)) == SP_REFL &&
391 <                        rayorigin(&sr, r, SPECULAR, np->rspec) == 0) {
392 <                dimlist[ndims++] = (int)np->mp;
393 <                for (niter = 0; niter < MAXITER; niter++) {
394 <                        if (niter)
391 >                        rayorigin(&sr, SPECULAR, np->rp, np->scolor) == 0) {
392 >                nstarget = 1;
393 >                if (specjitter > 1.5) { /* multiple samples? */
394 >                        nstarget = specjitter*np->rp->rweight + .5;
395 >                        if (sr.rweight <= minweight*nstarget)
396 >                                nstarget = sr.rweight/minweight;
397 >                        if (nstarget > 1) {
398 >                                d = 1./nstarget;
399 >                                scalescolor(sr.rcoef, d);
400 >                                sr.rweight *= d;
401 >                        } else
402 >                                nstarget = 1;
403 >                }
404 >                scolorblack(scol);
405 >                dimlist[ndims++] = (int)(size_t)np->mp;
406 >                maxiter = MAXITER*nstarget;
407 >                for (nstaken = ntrials = 0; nstaken < nstarget &&
408 >                                                ntrials < maxiter; ntrials++) {
409 >                        if (ntrials)
410                                  d = frandom();
411                          else
412                                  d = urand(ilhash(dimlist,ndims)+samplendx);
# Line 387 | Line 414 | register NORMDAT  *np;
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
422                                  d = sqrt( np->alpha2 * -log(rv[1]) );
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) {
425 >                        d = -2.0 * DOT(h, np->rp->rdir) / (1.0 + d*d);
426 >                        VSUM(sr.rdir, np->rp->rdir, h, d);
427 >                                                /* sample rejection test */
428 >                        if ((d = DOT(sr.rdir, np->rp->ron)) <= FTINY)
429 >                                continue;
430 >                        checknorm(sr.rdir);
431 >                        if (nstarget > 1) {     /* W-G-M-D adjustment */
432 >                                if (nstaken) rayclear(&sr);
433                                  rayvalue(&sr);
434 <                                multcolor(sr.rcol, np->scolor);
435 <                                addcolor(r->rcol, sr.rcol);
436 <                                break;
434 >                                d = 2./(1. + np->rp->rod/d);
435 >                                scalescolor(sr.rcol, d);
436 >                                saddscolor(scol, sr.rcol);
437 >                        } else {
438 >                                rayvalue(&sr);
439 >                                smultscolor(sr.rcol, sr.rcoef);
440 >                                saddscolor(np->rp->rcol, sr.rcol);
441                          }
442 +                        ++nstaken;
443                  }
444 +                if (nstarget > 1) {             /* final W-G-M-D weighting */
445 +                        smultscolor(scol, sr.rcoef);
446 +                        d = (double)nstarget/ntrials;
447 +                        scalescolor(scol, d);
448 +                        saddscolor(np->rp->rcol, scol);
449 +                }
450                  ndims--;
451          }
452                                          /* compute transmission */
453 +        copyscolor(sr.rcoef, np->mcolor);       /* modified by color */
454 +        scalescolor(sr.rcoef, np->tspec);
455          if ((np->specfl & (SP_TRAN|SP_TBLT)) == SP_TRAN &&
456 <                        rayorigin(&sr, r, SPECULAR, np->tspec) == 0) {
457 <                dimlist[ndims++] = (int)np->mp;
458 <                for (niter = 0; niter < MAXITER; niter++) {
459 <                        if (niter)
456 >                        rayorigin(&sr, SPECULAR, np->rp, sr.rcoef) == 0) {
457 >                nstarget = 1;
458 >                if (specjitter > 1.5) { /* multiple samples? */
459 >                        nstarget = specjitter*np->rp->rweight + .5;
460 >                        if (sr.rweight <= minweight*nstarget)
461 >                                nstarget = sr.rweight/minweight;
462 >                        if (nstarget > 1) {
463 >                                d = 1./nstarget;
464 >                                scalescolor(sr.rcoef, d);
465 >                                sr.rweight *= d;
466 >                        } else
467 >                                nstarget = 1;
468 >                }
469 >                dimlist[ndims++] = (int)(size_t)np->mp;
470 >                maxiter = MAXITER*nstarget;
471 >                for (nstaken = ntrials = 0; nstaken < nstarget &&
472 >                                                ntrials < maxiter; ntrials++) {
473 >                        if (ntrials)
474                                  d = frandom();
475                          else
476 <                                d = urand(ilhash(dimlist,ndims)+1823+samplendx);
476 >                                d = urand(ilhash(dimlist,ndims)+samplendx);
477                          multisamp(rv, 2, d);
478                          d = 2.0*PI * rv[0];
479                          cosp = tcos(d);
480                          sinp = tsin(d);
481 <                        rv[1] = 1.0 - specjitter*rv[1];
481 >                        if ((0. <= specjitter) & (specjitter < 1.))
482 >                                rv[1] = 1.0 - specjitter*rv[1];
483                          if (rv[1] <= FTINY)
484                                  d = 1.0;
485                          else
486                                  d = sqrt( np->alpha2 * -log(rv[1]) );
487                          for (i = 0; i < 3; i++)
488                                  sr.rdir[i] = np->prdir[i] + d*(cosp*u[i] + sinp*v[i]);
489 <                        if (DOT(sr.rdir, r->ron) < -FTINY) {
490 <                                normalize(sr.rdir);     /* OK, normalize */
491 <                                rayvalue(&sr);
492 <                                scalecolor(sr.rcol, np->tspec);
493 <                                multcolor(sr.rcol, np->mcolor); /* modified */
494 <                                addcolor(r->rcol, sr.rcol);
495 <                                break;
496 <                        }
489 >                                                /* sample rejection test */
490 >                        if (DOT(sr.rdir, np->rp->ron) >= -FTINY)
491 >                                continue;
492 >                        normalize(sr.rdir);     /* OK, normalize */
493 >                        if (nstaken)            /* multi-sampling */
494 >                                rayclear(&sr);
495 >                        rayvalue(&sr);
496 >                        smultscolor(sr.rcol, sr.rcoef);
497 >                        saddscolor(np->rp->rcol, sr.rcol);
498 >                        ++nstaken;
499                  }
500                  ndims--;
501          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines