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.63 by greg, Sun Jul 29 21:56:16 2012 UTC vs.
Revision 2.76 by greg, Wed Jan 10 04:08:50 2018 UTC

# Line 19 | Line 19 | static const char RCSid[] = "$Id$";
19   #include  "otypes.h"
20   #include  "rtotypes.h"
21   #include  "random.h"
22 + #include  "pmapmat.h"
23  
24   #ifndef  MAXITER
25   #define  MAXITER        10              /* maximum # specular ray attempts */
# Line 111 | Line 112 | dirnorm(               /* compute source contribution */
112                  scalecolor(ctmp, dtmp);
113                  addcolor(cval, ctmp);
114          }
115 +
116 +        if (ldot < -FTINY && ltdiff > FTINY) {
117 +                /*
118 +                 *  Compute diffuse transmission.
119 +                 */
120 +                copycolor(ctmp, np->mcolor);
121 +                dtmp = -ldot * omega * ltdiff * (1.0/PI);
122 +                scalecolor(ctmp, dtmp);
123 +                addcolor(cval, ctmp);
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
# Line 137 | Line 152 | dirnorm(               /* compute source contribution */
152                          addcolor(cval, ctmp);
153                  }
154          }
155 <        if (ldot < -FTINY && ltdiff > FTINY) {
156 <                /*
142 <                 *  Compute diffuse transmission.
143 <                 */
144 <                copycolor(ctmp, np->mcolor);
145 <                dtmp = -ldot * omega * ltdiff * (1.0/PI);
146 <                scalecolor(ctmp, dtmp);
147 <                addcolor(cval, ctmp);
148 <        }
155 >        
156 >
157          if (ldot < -FTINY && (np->specfl&(SP_TRAN|SP_PURE)) == SP_TRAN) {
158                  /*
159                   *  Compute specular transmission.  Specular transmission
# Line 180 | Line 188 | m_normal(                      /* color a ray that hit something normal *
188          double  d;
189          COLOR  ctmp;
190          int  i;
191 +
192 +        /* PMAP: skip transmitted shadow ray if accounted for in photon map */
193 +        /* No longer needed?
194 +        if (shadowRayInPmap(r) || ambRayInPmap(r))
195 +                return(1); */          
196 +                
197                                                  /* easy shadow test */
198          if (r->crtype & SHADOW && m->otype != MAT_TRANS)
199                  return(1);
# Line 188 | Line 202 | m_normal(                      /* color a ray that hit something normal *
202                  objerror(m, USER, "bad number of arguments");
203                                                  /* check for back side */
204          if (r->rod < 0.0) {
205 <                if (!backvis && m->otype != MAT_TRANS) {
205 >                if (!backvis) {
206                          raytrans(r);
207                          return(1);
208                  }
# Line 239 | Line 253 | m_normal(                      /* color a ray that hit something normal *
253                          if (!(nd.specfl & SP_PURE) &&
254                                          specthresh >= nd.tspec-FTINY)
255                                  nd.specfl |= SP_TBLT;
256 <                        if (!hastexture || r->crtype & SHADOW) {
256 >                        if (!hastexture || r->crtype & (SHADOW|AMBIENT)) {
257                                  VCOPY(nd.prdir, r->rdir);
258                                  transtest = 2;
259                          } else {
260 <                                for (i = 0; i < 3; i++)         /* perturb */
261 <                                        nd.prdir[i] = r->rdir[i] - r->pert[i];
260 >                                                        /* perturb */
261 >                                VSUB(nd.prdir, r->rdir, r->pert);
262                                  if (DOT(nd.prdir, r->ron) < -FTINY)
263                                          normalize(nd.prdir);    /* OK */
264                                  else
# Line 254 | Line 268 | m_normal(                      /* color a ray that hit something normal *
268          } else
269                  nd.tdiff = nd.tspec = nd.trans = 0.0;
270                                                  /* transmitted ray */
271 +
272          if ((nd.specfl&(SP_TRAN|SP_PURE|SP_TBLT)) == (SP_TRAN|SP_PURE)) {
273                  RAY  lr;
274                  copycolor(lr.rcoef, nd.mcolor); /* modified by color */
# Line 280 | Line 295 | m_normal(                      /* color a ray that hit something normal *
295                  if (m->otype != MAT_METAL) {
296                          setcolor(nd.scolor, nd.rspec, nd.rspec, nd.rspec);
297                  } else if (fest > FTINY) {
298 <                        d = nd.rspec*(1. - fest);
298 >                        d = m->oargs.farg[3]*(1. - fest);
299                          for (i = 0; i < 3; i++)
300 <                                nd.scolor[i] = fest + nd.mcolor[i]*d;
300 >                                colval(nd.scolor,i) = fest +
301 >                                                colval(nd.mcolor,i)*d;
302                  } else {
303                          copycolor(nd.scolor, nd.mcolor);
304                          scalecolor(nd.scolor, nd.rspec);
# Line 305 | Line 321 | m_normal(                      /* color a ray that hit something normal *
321                          rayvalue(&lr);
322                          multcolor(lr.rcol, lr.rcoef);
323                          addcolor(r->rcol, lr.rcol);
324 <                        if (!hastexture && nd.specfl & SP_FLAT) {
324 >                        if (nd.specfl & SP_FLAT &&
325 >                                        !hastexture | (r->crtype & AMBIENT)) {
326                                  mirtest = 2.*bright(lr.rcol);
327                                  mirdist = r->rot + lr.rt;
328                          }
# Line 314 | Line 331 | m_normal(                      /* color a ray that hit something normal *
331                                                  /* diffuse reflection */
332          nd.rdiff = 1.0 - nd.trans - nd.rspec;
333  
334 <        if (nd.specfl & SP_PURE && nd.rdiff <= FTINY && nd.tdiff <= FTINY)
334 >        if (nd.specfl & SP_PURE && nd.rdiff <= FTINY && nd.tdiff <= FTINY) {
335 >                if (mirtest > transtest+FTINY)
336 >                        r->rt = mirdist;
337 >                else if (transtest > FTINY)
338 >                        r->rt = transdist;
339                  return(1);                      /* 100% pure specular */
340 <
340 >        }
341          if (!(nd.specfl & SP_PURE))
342 <                gaussamp(&nd);          /* checks *BLT flags */
342 >                gaussamp(&nd);                  /* checks *BLT flags */
343  
344          if (nd.rdiff > FTINY) {         /* ambient from this side */
345                  copycolor(ctmp, nd.mcolor);     /* modified by material color */
# Line 376 | Line 397 | gaussamp(                      /* sample Gaussian specular */
397                          (np->specfl & (SP_TRAN|SP_TBLT)) != SP_TRAN)
398                  return;
399                                          /* set up sample coordinates */
400 <        v[0] = v[1] = v[2] = 0.0;
380 <        for (i = 0; i < 3; i++)
381 <                if (np->pnorm[i] < 0.6 && np->pnorm[i] > -0.6)
382 <                        break;
383 <        v[i] = 1.0;
384 <        fcross(u, v, np->pnorm);
385 <        normalize(u);
400 >        getperpendicular(u, np->pnorm, rand_samp);
401          fcross(v, np->pnorm, u);
402                                          /* compute reflection */
403          if ((np->specfl & (SP_REFL|SP_RBLT)) == SP_REFL &&

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines