ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/m_brdf.c
(Generate patch)

Comparing ray/src/rt/m_brdf.c (file contents):
Revision 2.10 by greg, Wed Jan 12 16:46:35 1994 UTC vs.
Revision 2.13 by greg, Mon Nov 6 12:03:22 1995 UTC

# Line 16 | Line 16 | static char SCCSid[] = "$SunId$ LBL";
16  
17   #include  "func.h"
18  
19 + extern int  backvis;                    /* back faces visible? */
20 +
21   /*
22   *      Arguments to this material include the color and specularity.
23   *  String arguments include the reflection function and files.
# Line 88 | Line 90 | double  omega;                 /* light source size */
90          double  dtmp;
91          COLOR  ctmp;
92          FVECT  ldx;
93 <        double  lddx[3], pt[MAXDIM];
92 <        double  vldx[4];
93 >        static double  vldx[5], pt[MAXDIM];
94          register char   **sa;
95          register int    i;
96 + #define lddx (vldx+1)
97  
98          setcolor(cval, 0.0, 0.0, 0.0);
99          
# Line 132 | Line 134 | double  omega;                 /* light source size */
134          multv3(ldx, ldir, funcxf.xfm);
135          for (i = 0; i < 3; i++)
136                  lddx[i] = ldx[i]/funcxf.sca;
137 +        lddx[3] = omega;
138                                          /* compute BRTDF */
139          if (np->mp->otype == MAT_BRTDF) {
140                  if (sa[6][0] == '0')            /* special case */
141                          colval(ctmp,RED) = 0.0;
142                  else
143 <                        colval(ctmp,RED) = funvalue(sa[6], 3, lddx);
143 >                        colval(ctmp,RED) = funvalue(sa[6], 4, lddx);
144                  if (!strcmp(sa[7],sa[6]))
145                          colval(ctmp,GRN) = colval(ctmp,RED);
146                  else
147 <                        colval(ctmp,GRN) = funvalue(sa[7], 3, lddx);
147 >                        colval(ctmp,GRN) = funvalue(sa[7], 4, lddx);
148                  if (!strcmp(sa[8],sa[6]))
149                          colval(ctmp,BLU) = colval(ctmp,RED);
150                  else if (!strcmp(sa[8],sa[7]))
151                          colval(ctmp,BLU) = colval(ctmp,GRN);
152                  else
153 <                        colval(ctmp,BLU) = funvalue(sa[8], 3, lddx);
153 >                        colval(ctmp,BLU) = funvalue(sa[8], 4, lddx);
154                  dtmp = bright(ctmp);
155          } else if (np->dp == NULL) {
156 <                dtmp = funvalue(sa[0], 3, lddx);
156 >                dtmp = funvalue(sa[0], 4, lddx);
157                  setcolor(ctmp, dtmp, dtmp, dtmp);
158          } else {
159                  for (i = 0; i < np->dp->nd; i++)
160 <                        pt[i] = funvalue(sa[3+i], 3, lddx);
160 >                        pt[i] = funvalue(sa[3+i], 4, lddx);
161                  vldx[0] = datavalue(np->dp, pt);
162 <                vldx[1] = lddx[0]; vldx[2] = lddx[1]; vldx[3] = lddx[2];
160 <                dtmp = funvalue(sa[0], 4, vldx);
162 >                dtmp = funvalue(sa[0], 5, vldx);
163                  setcolor(ctmp, dtmp, dtmp, dtmp);
164          }
165          if (errno) {
# Line 185 | Line 187 | double  omega;                 /* light source size */
187                  scalecolor(ctmp, dtmp);
188                  addcolor(cval, ctmp);
189          }
190 + #undef lddx
191   }
192  
193  
194 < m_brdf(m, r)                    /* color a ray which hit a BRDTF material */
194 > m_brdf(m, r)                    /* color a ray which hit a BRDTfunc material */
195   register OBJREC  *m;
196   register RAY  *r;
197   {
# Line 288 | Line 291 | register RAY  *r;
291          if (hasrefl) {
292                  if (nd.pdot < 0.0)
293                          flipsurface(r);
294 <                ambient(ctmp, r);
294 >                ambient(ctmp, r, nd.pnorm);
295                  multcolor(ctmp, nd.rdiff);
296                  addcolor(r->rcol, ctmp);        /* add to returned color */
297                  if (nd.pdot < 0.0)
# Line 297 | Line 300 | register RAY  *r;
300          if (hastrans) {                         /* from other side */
301                  if (nd.pdot > 0.0)
302                          flipsurface(r);
303 <                ambient(ctmp, r);
303 >                ambient(ctmp, r, nd.pnorm);
304                  multcolor(ctmp, nd.tdiff);
305                  addcolor(r->rcol, ctmp);
306                  if (nd.pdot > 0.0)
# Line 349 | Line 352 | register RAY  *r;
352                                                  /* compute reflectance */
353          dtmp = 1.0 - nd.trans - nd.rspec;
354          setcolor(nd.rdiff, dtmp, dtmp, dtmp);
355 <                                                /* fix orientation */
356 <        if (r->rod < 0.0)
357 <                flipsurface(r);
355 >                                                /* check for back side */
356 >        if (r->rod < 0.0) {
357 >                if (!backvis && m->otype != MAT_TFUNC
358 >                                && m->otype != MAT_TDATA) {
359 >                        raytrans(r);
360 >                        return(1);
361 >                }
362 >                flipsurface(r);                 /* reorient if backvis */
363 >        }
364                                                  /* get modifiers */
365          raytexture(r, m->omod);
366          nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
# Line 368 | Line 377 | register RAY  *r;
377          }
378                                                  /* compute ambient */
379          if (nd.trans < 1.0-FTINY) {
380 <                ambient(ctmp, r);
380 >                ambient(ctmp, r, nd.pnorm);
381                  scalecolor(ctmp, 1.0-nd.trans);
382                  multcolor(ctmp, nd.mcolor);     /* modified by material color */
383                  addcolor(r->rcol, ctmp);        /* add to returned color */
384          }
385          if (nd.trans > FTINY) {         /* from other side */
386                  flipsurface(r);
387 <                ambient(ctmp, r);
387 >                ambient(ctmp, r, nd.pnorm);
388                  scalecolor(ctmp, nd.trans);
389                  multcolor(ctmp, nd.mcolor);
390                  addcolor(r->rcol, ctmp);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines