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.18 by greg, Wed Mar 5 16:16:53 2003 UTC vs.
Revision 2.21 by schorsch, Tue Mar 30 16:13:01 2004 UTC

# Line 8 | Line 8 | static const char      RCSid[] = "$Id$";
8   #include "copyright.h"
9  
10   #include  "ray.h"
11 <
11 > #include  "ambient.h"
12   #include  "data.h"
13 <
13 > #include  "source.h"
14   #include  "otypes.h"
15 <
15 > #include  "rtotypes.h"
16   #include  "func.h"
17  
18   /*
# Line 77 | Line 77 | typedef struct {
77   }  BRDFDAT;             /* BRDF material data */
78  
79  
80 + static srcdirf_t dirbrdf;
81 + static int setbrdfunc(BRDFDAT  *np);
82 +
83 +
84   static void
85 < dirbrdf(cval, np, ldir, omega)          /* compute source contribution */
86 < COLOR  cval;                    /* returned coefficient */
87 < register BRDFDAT  *np;          /* material data */
88 < FVECT  ldir;                    /* light source direction */
89 < double  omega;                  /* light source size */
85 > dirbrdf(                /* compute source contribution */
86 >        COLOR  cval,                    /* returned coefficient */
87 >        void  *nnp,             /* material data */
88 >        FVECT  ldir,                    /* light source direction */
89 >        double  omega                   /* light source size */
90 > )
91   {
92 +        register BRDFDAT *np = nnp;
93          double  ldot;
94          double  dtmp;
95          COLOR  ctmp;
# Line 170 | Line 176 | double  omega;                 /* light source size */
176                  /*
177                   *  Compute reflected non-diffuse component.
178                   */
179 <                if (np->mp->otype == MAT_MFUNC | np->mp->otype == MAT_MDATA)
179 >                if ((np->mp->otype == MAT_MFUNC) | (np->mp->otype == MAT_MDATA))
180                          multcolor(ctmp, np->mcolor);
181                  dtmp = ldot * omega * np->rspec;
182                  scalecolor(ctmp, dtmp);
# Line 179 | Line 185 | double  omega;                 /* light source size */
185                  /*
186                   *  Compute transmitted non-diffuse component.
187                   */
188 <                if (np->mp->otype == MAT_TFUNC | np->mp->otype == MAT_TDATA)
188 >                if ((np->mp->otype == MAT_TFUNC) | (np->mp->otype == MAT_TDATA))
189                          multcolor(ctmp, np->mcolor);
190                  dtmp = -ldot * omega * np->tspec;
191                  scalecolor(ctmp, dtmp);
# Line 189 | Line 195 | double  omega;                 /* light source size */
195   }
196  
197  
198 < int
199 < m_brdf(m, r)                    /* color a ray that hit a BRDTfunc material */
200 < register OBJREC  *m;
201 < register RAY  *r;
198 > extern int
199 > m_brdf(                 /* color a ray that hit a BRDTfunc material */
200 >        register OBJREC  *m,
201 >        register RAY  *r
202 > )
203   {
204          int  hitfront = 1;
205          BRDFDAT  nd;
# Line 204 | Line 211 | register RAY  *r;
211          register MFUNC  *mf;
212          register int  i;
213                                                  /* check arguments */
214 <        if (m->oargs.nsargs < 10 | m->oargs.nfargs < 9)
214 >        if ((m->oargs.nsargs < 10) | (m->oargs.nfargs < 9))
215                  objerror(m, USER, "bad # arguments");
216          nd.mp = m;
217          nd.pr = r;
# Line 322 | Line 329 | register RAY  *r;
329  
330  
331  
332 < int
333 < m_brdf2(m, r)                   /* color a ray that hit a BRDF material */
334 < register OBJREC  *m;
335 < register RAY  *r;
332 > extern int
333 > m_brdf2(                        /* color a ray that hit a BRDF material */
334 >        register OBJREC  *m,
335 >        register RAY  *r
336 > )
337   {
338          BRDFDAT  nd;
339          COLOR  ctmp;
# Line 335 | Line 343 | register RAY  *r;
343          if (r->crtype & SHADOW)
344                  return(1);
345                                                  /* check arguments */
346 <        if (m->oargs.nsargs < (hasdata(m->otype)?4:2) | m->oargs.nfargs <
347 <                        (m->otype==MAT_TFUNC|m->otype==MAT_TDATA?6:4))
346 >        if ((m->oargs.nsargs < (hasdata(m->otype)?4:2)) | (m->oargs.nfargs <
347 >                        ((m->otype==MAT_TFUNC)|(m->otype==MAT_TDATA)?6:4)))
348                  objerror(m, USER, "bad # arguments");
349                                                  /* check for back side */
350          if (r->rod < 0.0) {
# Line 359 | Line 367 | register RAY  *r;
367                                                  /* get specular component */
368          nd.rspec = m->oargs.farg[3];
369                                                  /* compute transmittance */
370 <        if (m->otype == MAT_TFUNC | m->otype == MAT_TDATA) {
370 >        if ((m->otype == MAT_TFUNC) | (m->otype == MAT_TDATA)) {
371                  nd.trans = m->oargs.farg[4]*(1.0 - nd.rspec);
372                  nd.tspec = nd.trans * m->oargs.farg[5];
373                  dtmp = nd.trans - nd.tspec;
# Line 408 | Line 416 | register RAY  *r;
416   }
417  
418  
419 < int
420 < setbrdfunc(np)                  /* set up brdf function and variables */
421 < register BRDFDAT  *np;
419 > static int
420 > setbrdfunc(                     /* set up brdf function and variables */
421 >        register BRDFDAT  *np
422 > )
423   {
424          FVECT  vec;
425  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines