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.32 by greg, Wed Apr 24 15:47:25 1996 UTC vs.
Revision 2.38 by greg, Wed Mar 12 04:59:05 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1996 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 functions for anisotropic materials.
6   */
7  
8 + #include "copyright.h"
9 +
10   #include  "ray.h"
11  
12   #include  "otypes.h"
# Line 16 | Line 15 | static char SCCSid[] = "$SunId$ LBL";
15  
16   #include  "random.h"
17  
19 extern double  specthresh;              /* specular sampling threshold */
20 extern double  specjitter;              /* specular sampling jitter */
21
22 extern int  backvis;                    /* back faces visible? */
23
18   #ifndef  MAXITER
19   #define  MAXITER        10              /* maximum # specular ray attempts */
20   #endif
21  
28 static  agaussamp(), getacoords();
29
22   /*
23   *      This routine implements the anisotropic Gaussian
24   *  model described by Ward in Siggraph `92 article.
# Line 68 | Line 60 | typedef struct {
60          double  pdot;           /* perturbed dot product */
61   }  ANISODAT;            /* anisotropic material data */
62  
63 + static void     getacoords();
64 + static void     agaussamp();
65  
66 +
67 + static void
68   diraniso(cval, np, ldir, omega)         /* compute source contribution */
69   COLOR  cval;                    /* returned coefficient */
70   register ANISODAT  *np;         /* material data */
# Line 182 | Line 178 | double  omega;                 /* light source size */
178   }
179  
180  
181 + int
182   m_aniso(m, r)                   /* shade ray that hit something anisotropic */
183   register OBJREC  *m;
184   register RAY  *r;
# Line 195 | Line 192 | register RAY  *r;
192  
193          if (m->oargs.nfargs != (m->otype == MAT_TRANS2 ? 8 : 6))
194                  objerror(m, USER, "bad number of real arguments");
195 +                                                /* check for back side */
196 +        if (r->rod < 0.0) {
197 +                if (!backvis && m->otype != MAT_TRANS2) {
198 +                        raytrans(r);
199 +                        return(1);
200 +                }
201 +                raytexture(r, m->omod);
202 +                flipsurface(r);                 /* reorient if backvis */
203 +        } else
204 +                raytexture(r, m->omod);
205 +                                                /* get material color */
206          nd.mp = m;
207          nd.rp = r;
200                                                /* get material color */
208          setcolor(nd.mcolor, m->oargs.farg[0],
209                             m->oargs.farg[1],
210                             m->oargs.farg[2]);
# Line 207 | Line 214 | register RAY  *r;
214          nd.v_alpha = m->oargs.farg[5];
215          if (nd.u_alpha < FTINY || nd.v_alpha <= FTINY)
216                  objerror(m, USER, "roughness too small");
217 <                                                /* check for back side */
211 <        if (r->rod < 0.0) {
212 <                if (!backvis && m->otype != MAT_TRANS2) {
213 <                        raytrans(r);
214 <                        return(1);
215 <                }
216 <                flipsurface(r);                 /* reorient if backvis */
217 <        }
218 <                                                /* get modifiers */
219 <        raytexture(r, m->omod);
217 >
218          nd.pdot = raynormal(nd.pnorm, r);       /* perturb normal */
219          if (nd.pdot < .001)
220                  nd.pdot = .001;                 /* non-zero for diraniso() */
# Line 267 | Line 265 | register RAY  *r;
265                                                  /* diffuse reflection */
266          nd.rdiff = 1.0 - nd.trans - nd.rspec;
267  
268 <        if (r->ro != NULL && isflat(r->ro->otype))
268 >        if (r->ro != NULL && isflat(r->ro->otype) &&
269 >                        DOT(r->pert,r->pert) <= FTINY*FTINY)
270                  nd.specfl |= SP_FLAT;
271  
272          getacoords(r, &nd);                     /* set up coordinates */
# Line 307 | Line 306 | register RAY  *r;
306   }
307  
308  
309 < static
309 > static void
310   getacoords(r, np)               /* set up coordinate system */
311   RAY  *r;
312   register ANISODAT  *np;
# Line 320 | Line 319 | register ANISODAT  *np;
319          errno = 0;
320          for (i = 0; i < 3; i++)
321                  np->u[i] = evalue(mf->ep[i]);
322 <        if (errno) {
322 >        if (errno == EDOM || errno == ERANGE) {
323                  objerror(np->mp, WARNING, "compute error");
324                  np->specfl |= SP_BADU;
325                  return;
# Line 337 | Line 336 | register ANISODAT  *np;
336   }
337  
338  
339 < static
339 > static void
340   agaussamp(r, np)                /* sample anisotropic gaussian specular */
341   RAY  *r;
342   register ANISODAT  *np;
# Line 359 | Line 358 | register ANISODAT  *np;
358                                  d = urand(ilhash(dimlist,ndims)+samplendx);
359                          multisamp(rv, 2, d);
360                          d = 2.0*PI * rv[0];
361 <                        cosp = cos(d) * np->u_alpha;
362 <                        sinp = sin(d) * np->v_alpha;
361 >                        cosp = tcos(d) * np->u_alpha;
362 >                        sinp = tsin(d) * np->v_alpha;
363                          d = sqrt(cosp*cosp + sinp*sinp);
364                          cosp /= d;
365                          sinp /= d;
# Line 397 | Line 396 | register ANISODAT  *np;
396                                  d = urand(ilhash(dimlist,ndims)+1823+samplendx);
397                          multisamp(rv, 2, d);
398                          d = 2.0*PI * rv[0];
399 <                        cosp = cos(d) * np->u_alpha;
400 <                        sinp = sin(d) * np->v_alpha;
399 >                        cosp = tcos(d) * np->u_alpha;
400 >                        sinp = tsin(d) * np->v_alpha;
401                          d = sqrt(cosp*cosp + sinp*sinp);
402                          cosp /= d;
403                          sinp /= d;
# Line 408 | Line 407 | register ANISODAT  *np;
407                          else
408                                  d = sqrt(-log(rv[1]) /
409                                          (cosp*cosp/(np->u_alpha*np->u_alpha) +
410 <                                         sinp*sinp/(np->v_alpha*np->u_alpha)));
410 >                                         sinp*sinp/(np->v_alpha*np->v_alpha)));
411                          for (i = 0; i < 3; i++)
412                                  sr.rdir[i] = np->prdir[i] +
413                                                  d*(cosp*np->u[i] + sinp*np->v[i]);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines