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

Comparing ray/src/rt/ambcomp.c (file contents):
Revision 2.5 by greg, Wed May 3 09:46:31 1995 UTC vs.
Revision 2.13 by greg, Wed Apr 13 23:00:59 2005 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 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   * Routines to compute "ambient" values using Monte Carlo
6 + *
7 + *  Declarations of external symbols in ambient.h
8   */
9  
10 + #include "copyright.h"
11 +
12   #include  "ray.h"
13  
14   #include  "ambient.h"
15  
16   #include  "random.h"
17  
17 typedef struct {
18        short  t, p;            /* theta, phi indices */
19        COLOR  v;               /* value sum */
20        float  r;               /* 1/distance sum */
21        float  k;               /* variance for this division */
22        int  n;                 /* number of subsamples */
23 }  AMBSAMP;             /* ambient sample division */
18  
25 typedef struct {
26        FVECT  ux, uy, uz;      /* x, y and z axis directions */
27        short  nt, np;          /* number of theta and phi directions */
28 }  AMBHEMI;             /* ambient sample hemisphere */
29
30
19   static int
20   ambcmp(d1, d2)                          /* decreasing order */
21   AMBSAMP  *d1, *d2;
# Line 46 | Line 34 | AMBSAMP  *d1, *d2;
34   {
35          register int  c;
36  
37 <        if (c = d1->t - d2->t)
37 >        if ( (c = d1->t - d2->t) )
38                  return(c);
39          return(d1->p - d2->p);
40   }
41  
42  
43 + int
44   divsample(dp, h, r)                     /* sample a division */
45   register AMBSAMP  *dp;
46   AMBHEMI  *h;
# Line 73 | Line 62 | RAY  *r;
62          multisamp(spt, 2, urand(ilhash(hlist,3)+dp->n));
63          zd = sqrt((dp->t + spt[0])/h->nt);
64          phi = 2.0*PI * (dp->p + spt[1])/h->np;
65 <        xd = cos(phi) * zd;
66 <        yd = sin(phi) * zd;
65 >        xd = tcos(phi) * zd;
66 >        yd = tsin(phi) * zd;
67          zd = sqrt(1.0 - zd*zd);
68          for (i = 0; i < 3; i++)
69                  ar.rdir[i] =    xd*h->ux[i] +
# Line 84 | Line 73 | RAY  *r;
73          rayvalue(&ar);
74          ndims--;
75          addcolor(dp->v, ar.rcol);
76 +                                        /* use rt to improve gradient calc */
77          if (ar.rt > FTINY && ar.rt < FHUGE)
78                  dp->r += 1.0/ar.rt;
79                                          /* (re)initialize error */
# Line 139 | Line 129 | FVECT  pg, dg;
129                          dp->n = 0;
130                          if (divsample(dp, &hemi, r) < 0)
131                                  goto oopsy;
132 +                        arad += dp->r;
133                          if (div != NULL)
134                                  dp++;
135 <                        else {
135 >                        else
136                                  addcolor(acol, dp->v);
146                                arad += dp->r;
147                        }
137                  }
138          if (ns > 0 && arad > FTINY && ndivs/arad < minarad)
139                  ns = 0;                 /* close enough */
# Line 153 | Line 142 | FVECT  pg, dg;
142                  qsort(div, ndivs, sizeof(AMBSAMP), ambcmp);     /* sort divs */
143                                                  /* super-sample */
144                  for (i = ns; i > 0; i--) {
145 <                        copystruct(&dnew, div);
145 >                        dnew = *div;
146                          if (divsample(&dnew, &hemi, r) < 0)
147                                  goto oopsy;
148                                                          /* reinsert */
149                          dp = div;
150                          j = ndivs < i ? ndivs : i;
151                          while (--j > 0 && dnew.k < dp[1].k) {
152 <                                copystruct(dp, dp+1);
152 >                                *dp = *(dp+1);
153                                  dp++;
154                          }
155 <                        copystruct(dp, &dnew);
155 >                        *dp = dnew;
156                  }
157                  if (pg != NULL || dg != NULL)   /* restore order */
158                          qsort(div, ndivs, sizeof(AMBSAMP), ambnorm);
159          }
160                                          /* compute returned values */
161          if (div != NULL) {
162 +                arad = 0.0;
163                  for (i = ndivs, dp = div; i-- > 0; dp++) {
164                          arad += dp->r;
165                          if (dp->n > 1) {
# Line 201 | Line 191 | FVECT  pg, dg;
191                                  for (i = 0; i < 3; i++)
192                                          dg[i] = 0.0;
193                  }
194 <                free((char *)div);
194 >                free((void *)div);
195          }
196          b = 1.0/ndivs;
197          scalecolor(acol, b);
# Line 227 | Line 217 | FVECT  pg, dg;
217          return(arad);
218   oopsy:
219          if (div != NULL)
220 <                free((char *)div);
220 >                free((void *)div);
221          return(0.0);
222   }
223  
224  
225 + void
226   inithemi(hp, r, wt)             /* initialize sampling hemisphere */
227   register AMBHEMI  *hp;
228   RAY  *r;
# Line 239 | Line 230 | double  wt;
230   {
231          register int  i;
232                                          /* set number of divisions */
242        if (wt < (.25*PI)/ambdiv+FTINY) {
243                hp->nt = hp->np = 0;
244                return;                 /* zero samples */
245        }
233          hp->nt = sqrt(ambdiv * wt / PI) + 0.5;
234 +        i = ambacc > FTINY ? 3 : 1;     /* minimum number of samples */
235 +        if (hp->nt < i)
236 +                hp->nt = i;
237          hp->np = PI * hp->nt + 0.5;
238                                          /* make axes */
239          VCOPY(hp->uz, r->ron);
# Line 260 | Line 250 | double  wt;
250   }
251  
252  
253 + void
254   comperrs(da, hp)                /* compute initial error estimates */
255   AMBSAMP  *da;           /* assumes standard ordering */
256   register AMBHEMI  *hp;
# Line 310 | Line 301 | register AMBHEMI  *hp;
301   }
302  
303  
304 + void
305   posgradient(gv, da, hp)                         /* compute position gradient */
306   FVECT  gv;
307   AMBSAMP  *da;                   /* assumes standard ordering */
# Line 357 | Line 349 | register AMBHEMI  *hp;
349                  }
350                  mag0 *= 2.0*PI / hp->np;
351                  phi = 2.0*PI * (double)j/hp->np;
352 <                cosp = cos(phi); sinp = sin(phi);
352 >                cosp = tcos(phi); sinp = tsin(phi);
353                  xd += mag0*cosp - mag1*sinp;
354                  yd += mag0*sinp + mag1*cosp;
355          }
# Line 366 | Line 358 | register AMBHEMI  *hp;
358   }
359  
360  
361 + void
362   dirgradient(gv, da, hp)                         /* compute direction gradient */
363   FVECT  gv;
364   AMBSAMP  *da;                   /* assumes standard ordering */
# Line 391 | Line 384 | register AMBHEMI  *hp;
384                          dp += hp->np;
385                  }
386                  phi = 2.0*PI * (j+.5)/hp->np + PI/2.0;
387 <                xd += mag * cos(phi);
388 <                yd += mag * sin(phi);
387 >                xd += mag * tcos(phi);
388 >                yd += mag * tsin(phi);
389          }
390          for (i = 0; i < 3; i++)
391                  gv[i] = (xd*hp->ux[i] + yd*hp->uy[i])/(hp->nt*hp->np);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines