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.22 by greg, Fri Oct 16 10:20:29 1992 UTC vs.
Revision 2.25 by greg, Thu May 27 15:28:03 1993 UTC

# Line 23 | Line 23 | static char SCCSid[] = "$SunId$ LBL";
23   extern double  specthresh;              /* specular sampling threshold */
24   extern double  specjitter;              /* specular sampling jitter */
25  
26 + static  gaussamp();
27 +
28   /*
29   *      This routine implements the isotropic Gaussian
30   *  model described by Ward in Siggraph `92 article.
# Line 36 | Line 38 | extern double  specjitter;             /* specular sampling jitte
38   *      red     grn     blu     rspec   rough   trans   tspec
39   */
40  
39 #define  BSPEC(m)       (6.0)           /* specularity parameter b */
40
41                                  /* specularity flags */
42   #define  SP_REFL        01              /* has reflected specular component */
43   #define  SP_TRAN        02              /* has transmitted specular */
# Line 102 | Line 102 | double  omega;                 /* light source size */
102                                                  /* + source if flat */
103                  if (np->specfl & SP_FLAT)
104                          dtmp += omega/(4.0*PI);
105 <                                                /* delta */
105 >                                                /* half vector */
106                  vtmp[0] = ldir[0] - np->rp->rdir[0];
107                  vtmp[1] = ldir[1] - np->rp->rdir[1];
108                  vtmp[2] = ldir[2] - np->rp->rdir[2];
109                  d2 = DOT(vtmp, np->pnorm);
110 <                d2 = 2.0 - 2.0*d2/sqrt(DOT(vtmp,vtmp));
110 >                d2 *= d2;
111 >                d2 = (DOT(vtmp,vtmp) - d2) / d2;
112                                                  /* gaussian */
113                  dtmp = exp(-d2/dtmp)/(4.*PI*dtmp);
114                                                  /* worth using? */
# Line 153 | Line 154 | register RAY  *r;
154   {
155          NORMDAT  nd;
156          double  transtest, transdist;
156        double  dtmp;
157          COLOR  ctmp;
158          register int  i;
159                                                  /* easy shadow test */
# Line 192 | Line 192 | register RAY  *r;
192                  else
193                          setcolor(nd.scolor, 1.0, 1.0, 1.0);
194                  scalecolor(nd.scolor, nd.rspec);
195                                                /* improved model */
196                dtmp = exp(-BSPEC(m)*nd.pdot);
197                for (i = 0; i < 3; i++)
198                        colval(nd.scolor,i) += (1.0-colval(nd.scolor,i))*dtmp;
199                nd.rspec += (1.0-nd.rspec)*dtmp;
195                                                  /* check threshold */
196 <                if (!(nd.specfl & SP_PURE) &&
202 <                                specthresh > FTINY &&
203 <                                (specthresh >= 1.-FTINY ||
204 <                                specthresh + .05 - .1*frandom() > nd.rspec))
196 >                if (!(nd.specfl & SP_PURE) && specthresh >= nd.rspec-FTINY)
197                          nd.specfl |= SP_RBLT;
198                                                  /* compute reflected ray */
199                  for (i = 0; i < 3; i++)
# Line 228 | Line 220 | register RAY  *r;
220                  if (nd.tspec > FTINY) {
221                          nd.specfl |= SP_TRAN;
222                                                          /* check threshold */
223 <                        if (!(nd.specfl & SP_PURE) && specthresh > FTINY &&
224 <                                        (specthresh >= 1.-FTINY ||
233 <                                specthresh + .05 - .1*frandom() > nd.tspec))
223 >                        if (!(nd.specfl & SP_PURE) &&
224 >                                        specthresh >= nd.tspec-FTINY)
225                                  nd.specfl |= SP_TBLT;
226                          if (r->crtype & SHADOW ||
227                                          DOT(r->pert,r->pert) <= FTINY*FTINY) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines