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.43 by greg, Tue Jun 17 21:32:46 2003 UTC vs.
Revision 2.49 by greg, Wed Jan 5 19:34:11 2005 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  
23   #ifndef  MAXITER
24   #define  MAXITER        10              /* maximum # specular ray attempts */
25   #endif
26                                          /* estimate of Fresnel function */
27 < #define  FRESNE(ci)     (exp(-6.5*(ci)) - 0.00150343919)
27 > #define  FRESNE(ci)     (exp(-5.85*(ci)) - 0.00287989916)
28  
28 static void  gaussamp();
29  
30   /*
31   *      This routine implements the isotropic Gaussian
# Line 64 | Line 64 | typedef struct {
64          double  pdot;           /* perturbed dot product */
65   }  NORMDAT;             /* normal material data */
66  
67 + static srcdirf_t dirnorm;
68 + static void gaussamp(RAY  *r, NORMDAT  *np);
69  
70 +
71   static void
72 < dirnorm(cval, np, ldir, omega)          /* compute source contribution */
73 < COLOR  cval;                    /* returned coefficient */
74 < register NORMDAT  *np;          /* material data */
75 < FVECT  ldir;                    /* light source direction */
76 < double  omega;                  /* light source size */
72 > dirnorm(                /* compute source contribution */
73 >        COLOR  cval,                    /* returned coefficient */
74 >        void  *nnp,             /* material data */
75 >        FVECT  ldir,                    /* light source direction */
76 >        double  omega                   /* light source size */
77 > )
78   {
79 +        register NORMDAT *np = nnp;
80          double  ldot;
81 <        double  ldiff;
81 >        double  lrdiff, ltdiff;
82          double  dtmp, d2;
83          FVECT  vtmp;
84          COLOR  ctmp;
# Line 86 | Line 91 | double  omega;                 /* light source size */
91                  return;         /* wrong side */
92  
93                                  /* Fresnel estimate */
94 <        ldiff = np->rdiff;
95 <        if (np->specfl & SP_PURE && (np->rspec > FTINY & ldiff > FTINY))
96 <                ldiff *= 1. - FRESNE(fabs(ldot));
94 >        lrdiff = np->rdiff;
95 >        ltdiff = np->tdiff;
96 >        if (np->specfl & SP_PURE && np->rspec > FTINY &&
97 >                        (lrdiff > FTINY) | (ltdiff > FTINY)) {
98 >                dtmp = 1. - FRESNE(fabs(ldot));
99 >                lrdiff *= dtmp;
100 >                ltdiff *= dtmp;
101 >        }
102  
103 <        if (ldot > FTINY && ldiff > FTINY) {
103 >        if (ldot > FTINY && lrdiff > FTINY) {
104                  /*
105                   *  Compute and add diffuse reflected component to returned
106                   *  color.  The diffuse reflected component will always be
107                   *  modified by the color of the material.
108                   */
109                  copycolor(ctmp, np->mcolor);
110 <                dtmp = ldot * omega * ldiff / PI;
110 >                dtmp = ldot * omega * lrdiff * (1.0/PI);
111                  scalecolor(ctmp, dtmp);
112                  addcolor(cval, ctmp);
113          }
# Line 110 | Line 120 | double  omega;                 /* light source size */
120                  dtmp = np->alpha2;
121                                                  /* + source if flat */
122                  if (np->specfl & SP_FLAT)
123 <                        dtmp += omega/(4.0*PI);
123 >                        dtmp += omega * (0.25/PI);
124                                                  /* half vector */
125                  vtmp[0] = ldir[0] - np->rp->rdir[0];
126                  vtmp[1] = ldir[1] - np->rp->rdir[1];
# Line 119 | Line 129 | double  omega;                 /* light source size */
129                  d2 *= d2;
130                  d2 = (DOT(vtmp,vtmp) - d2) / d2;
131                                                  /* gaussian */
132 <                dtmp = exp(-d2/dtmp)/(4.*PI*dtmp);
132 >                dtmp = exp(-d2/dtmp)/(4.*PI * np->pdot * dtmp);
133                                                  /* worth using? */
134                  if (dtmp > FTINY) {
135                          copycolor(ctmp, np->scolor);
136 <                        dtmp *= omega * sqrt(ldot/np->pdot);
136 >                        dtmp *= omega;
137                          scalecolor(ctmp, dtmp);
138                          addcolor(cval, ctmp);
139                  }
140          }
141 <        if (ldot < -FTINY && np->tdiff > FTINY) {
141 >        if (ldot < -FTINY && ltdiff > FTINY) {
142                  /*
143                   *  Compute diffuse transmission.
144                   */
145                  copycolor(ctmp, np->mcolor);
146 <                dtmp = -ldot * omega * np->tdiff / PI;
146 >                dtmp = -ldot * omega * ltdiff * (1.0/PI);
147                  scalecolor(ctmp, dtmp);
148                  addcolor(cval, ctmp);
149          }
# Line 143 | Line 153 | double  omega;                 /* light source size */
153                   *  is always modified by material color.
154                   */
155                                                  /* roughness + source */
156 <                dtmp = np->alpha2 + omega/PI;
156 >                dtmp = np->alpha2 + omega*(1.0/PI);
157                                                  /* gaussian */
158 <                dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp)/(PI*dtmp);
158 >                dtmp = exp((2.*DOT(np->prdir,ldir)-2.)/dtmp) /
159 >                                        (PI*np->pdot*dtmp);
160                                                  /* worth using? */
161                  if (dtmp > FTINY) {
162                          copycolor(ctmp, np->mcolor);
163 <                        dtmp *= np->tspec * omega * sqrt(-ldot/np->pdot);
163 >                        dtmp *= np->tspec * omega;
164                          scalecolor(ctmp, dtmp);
165                          addcolor(cval, ctmp);
166                  }
# Line 157 | Line 168 | double  omega;                 /* light source size */
168   }
169  
170  
171 < int
172 < m_normal(m, r)                  /* color a ray that hit something normal */
173 < register OBJREC  *m;
174 < register RAY  *r;
171 > extern int
172 > m_normal(                       /* color a ray that hit something normal */
173 >        register OBJREC  *m,
174 >        register RAY  *r
175 > )
176   {
177          NORMDAT  nd;
178          double  fest;
# Line 198 | Line 210 | register RAY  *r;
210          if ((nd.alpha2 *= nd.alpha2) <= FTINY)
211                  nd.specfl |= SP_PURE;
212  
213 <        if (hastexture = (DOT(r->pert,r->pert) > FTINY*FTINY)) {
213 >        if ( (hastexture = (DOT(r->pert,r->pert) > FTINY*FTINY)) ) {
214                  nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
215          } else {
216                  VCOPY(nd.pnorm, r->ron);
# Line 351 | Line 363 | register RAY  *r;
363  
364  
365   static void
366 < gaussamp(r, np)                 /* sample gaussian specular */
367 < RAY  *r;
368 < register NORMDAT  *np;
366 > gaussamp(                       /* sample gaussian specular */
367 >        RAY  *r,
368 >        register NORMDAT  *np
369 > )
370   {
371          RAY  sr;
372          FVECT  u, v, h;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines