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

Comparing ray/src/rt/aniso.c (file contents):
Revision 2.18 by greg, Tue May 19 17:09:06 1992 UTC vs.
Revision 2.22 by greg, Fri Oct 16 10:20:27 1992 UTC

# Line 20 | Line 20 | extern double  specthresh;             /* specular sampling thres
20   extern double  specjitter;              /* specular sampling jitter */
21  
22   /*
23 < *      This anisotropic reflection model uses a variant on the
24 < *  exponential Gaussian used in normal.c.
23 > *      This routine implements the anisotropic Gaussian
24 > *  model described by Ward in Siggraph `92 article.
25   *      We orient the surface towards the incoming ray, so a single
26   *  surface can be used to represent an infinitely thin object.
27   *
# Line 117 | Line 117 | double  omega;                 /* light source size */
117                  dtmp2 *= dtmp2 / av2;
118                                                  /* gaussian */
119                  dtmp = (dtmp1 + dtmp2) / (1.0 + DOT(np->pnorm, h));
120 <                dtmp = exp(-2.0*dtmp) * 1.0/(4.0*PI)
120 >                dtmp = exp(-2.0*dtmp) * (1.0/4.0/PI)
121                                  * sqrt(ldot/(np->pdot*au2*av2));
122                                                  /* worth using? */
123                  if (dtmp > FTINY) {
# Line 149 | Line 149 | double  omega;                 /* light source size */
149                  h[0] = ldir[0] - np->prdir[0];
150                  h[1] = ldir[1] - np->prdir[1];
151                  h[2] = ldir[2] - np->prdir[2];
152 <                dtmp = DOT(h,np->pnorm);
153 <                dtmp = DOT(h,h) - dtmp*dtmp;
152 >                dtmp = DOT(h,h);
153                  if (dtmp > FTINY*FTINY) {
154 <                        dtmp1 = DOT(h,np->u);
155 <                        dtmp1 = dtmp1*dtmp1 / (au2*dtmp);
156 <                        dtmp2 = DOT(h,np->v);
157 <                        dtmp2 = dtmp2*dtmp2 / (av2*dtmp);
158 <                        dtmp = 2. - 2.*DOT(ldir,np->prdir);
159 <                        dtmp *= dtmp1 + dtmp2;
154 >                        dtmp1 = DOT(h,np->pnorm);
155 >                        dtmp = 1.0 - dtmp1*dtmp1/dtmp;
156 >                        if (dtmp > FTINY*FTINY) {
157 >                                dtmp1 = DOT(h,np->u);
158 >                                dtmp1 = dtmp1*dtmp1 / au2;
159 >                                dtmp2 = DOT(h,np->v);
160 >                                dtmp2 = dtmp2*dtmp2 / av2;
161 >                                dtmp = (dtmp1 + dtmp2) / dtmp;
162 >                        }
163                  } else
164                          dtmp = 0.0;
165                                                  /* gaussian */
166 <                dtmp = exp(-dtmp) * 1.0/(4.0*PI)
166 >                dtmp = exp(-dtmp) * (1.0/PI)
167                                  * sqrt(-ldot/(np->pdot*au2*av2));
168                                                  /* worth using? */
169                  if (dtmp > FTINY) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines