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.13 by greg, Mon Nov 6 12:03:22 1995 UTC vs.
Revision 2.16 by greg, Tue Feb 25 02:47:22 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 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   *  Shading for materials with arbitrary BRDF's
6   */
7  
8 + #include "copyright.h"
9 +
10   #include  "ray.h"
11  
12   #include  "data.h"
# Line 16 | Line 15 | static char SCCSid[] = "$SunId$ LBL";
15  
16   #include  "func.h"
17  
19 extern int  backvis;                    /* back faces visible? */
20
18   /*
19   *      Arguments to this material include the color and specularity.
20   *  String arguments include the reflection function and files.
# Line 80 | Line 77 | typedef struct {
77   }  BRDFDAT;             /* BRDF material data */
78  
79  
80 + static void
81   dirbrdf(cval, np, ldir, omega)          /* compute source contribution */
82   COLOR  cval;                    /* returned coefficient */
83   register BRDFDAT  *np;          /* material data */
# Line 191 | Line 189 | double  omega;                 /* light source size */
189   }
190  
191  
192 < m_brdf(m, r)                    /* color a ray which hit a BRDTfunc material */
192 > int
193 > m_brdf(m, r)                    /* color a ray that hit a BRDTfunc material */
194   register OBJREC  *m;
195   register RAY  *r;
196   {
197 +        int  hitfront = 1;
198          BRDFDAT  nd;
199          RAY  sr;
200          double  transtest, transdist;
201          int  hasrefl, hastrans;
202          COLOR  ctmp;
203 +        FVECT  vtmp;
204          register MFUNC  *mf;
205          register int  i;
206                                                  /* check arguments */
# Line 232 | Line 233 | register RAY  *r;
233                          nd.pnorm[i] = -nd.pnorm[i];
234                          r->pert[i] = -r->pert[i];
235                  }
236 +                hitfront = 0;
237          }
238          copycolor(nd.mcolor, r->pcol);          /* get pattern color */
239          multcolor(nd.rdiff, nd.mcolor);         /* modify diffuse values */
# Line 289 | Line 291 | register RAY  *r;
291          }
292                                                  /* compute ambient */
293          if (hasrefl) {
294 <                if (nd.pdot < 0.0)
294 >                if (!hitfront)
295                          flipsurface(r);
296                  ambient(ctmp, r, nd.pnorm);
297                  multcolor(ctmp, nd.rdiff);
298                  addcolor(r->rcol, ctmp);        /* add to returned color */
299 <                if (nd.pdot < 0.0)
299 >                if (!hitfront)
300                          flipsurface(r);
301          }
302          if (hastrans) {                         /* from other side */
303 <                if (nd.pdot > 0.0)
303 >                if (hitfront)
304                          flipsurface(r);
305 <                ambient(ctmp, r, nd.pnorm);
305 >                vtmp[0] = -nd.pnorm[0];
306 >                vtmp[1] = -nd.pnorm[1];
307 >                vtmp[2] = -nd.pnorm[2];
308 >                ambient(ctmp, r, vtmp);
309                  multcolor(ctmp, nd.tdiff);
310                  addcolor(r->rcol, ctmp);
311 <                if (nd.pdot > 0.0)
311 >                if (hitfront)
312                          flipsurface(r);
313          }
314          if (hasrefl | hastrans || m->oargs.sarg[6][0] != '0')
# Line 317 | Line 322 | register RAY  *r;
322  
323  
324  
325 < m_brdf2(m, r)                   /* color a ray which hit a BRDF material */
325 > int
326 > m_brdf2(m, r)                   /* color a ray that hit a BRDF material */
327   register OBJREC  *m;
328   register RAY  *r;
329   {
330          BRDFDAT  nd;
331          COLOR  ctmp;
332 +        FVECT  vtmp;
333          double  dtmp;
334                                                  /* always a shadow */
335          if (r->crtype & SHADOW)
# Line 384 | Line 391 | register RAY  *r;
391          }
392          if (nd.trans > FTINY) {         /* from other side */
393                  flipsurface(r);
394 <                ambient(ctmp, r, nd.pnorm);
394 >                vtmp[0] = -nd.pnorm[0];
395 >                vtmp[1] = -nd.pnorm[1];
396 >                vtmp[2] = -nd.pnorm[2];
397 >                ambient(ctmp, r, vtmp);
398                  scalecolor(ctmp, nd.trans);
399                  multcolor(ctmp, nd.mcolor);
400                  addcolor(r->rcol, ctmp);
# Line 397 | Line 407 | register RAY  *r;
407   }
408  
409  
410 + int
411   setbrdfunc(np)                  /* set up brdf function and variables */
412   register BRDFDAT  *np;
413   {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines