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

Comparing ray/src/rt/srcsamp.c (file contents):
Revision 1.2 by greg, Mon Oct 21 14:27:36 1991 UTC vs.
Revision 2.4 by greg, Tue Sep 22 11:28:48 1992 UTC

# Line 8 | Line 8 | static char SCCSid[] = "$SunId$ LBL";
8   * Source sampling routines
9   */
10  
11 < #include  "standard.h"
11 > #include  "ray.h"
12  
13 #include  "object.h"
14
13   #include  "source.h"
14  
15   #include  "random.h"
16  
17  
20 extern int  dimlist[];          /* dimension list for distribution */
21 extern int  ndims;              /* number of dimensions so far */
22 extern int  samplendx;          /* index for this sample */
23
24
18   double
19 < nextssamp(org, dir, si)         /* compute sample for source, rtn. distance */
20 < FVECT  org, dir;                /* origin is read only, direction is set */
19 > nextssamp(r, si)                /* compute sample for source, rtn. distance */
20 > register RAY  *r;               /* origin is read, direction is set */
21   register SRCINDEX  *si;         /* source index (modified to current) */
22   {
23          int  cent[3], size[3], parr[2];
24          FVECT  vpos;
25          double  d;
26          register int  i;
27 < tryagain:
27 > nextsample:
28          while (++si->sp >= si->np) {    /* get next sample */
29                  if (++si->sn >= nsources)
30                          return(0.0);    /* no more */
31 <                if (srcsizerat <= FTINY)
32 <                        nopart(si, org);
31 >                if (source[si->sn].sflags & SSKIP)
32 >                        si->np = 0;
33 >                else if (srcsizerat <= FTINY)
34 >                        nopart(si, r);
35                  else {
36                          for (i = si->sn; source[i].sflags & SVIRTUAL;
37                                          i = source[i].sa.sv.sn)
38                                  ;               /* partition source */
39 <                        (*sfun[source[i].so->otype].of->partit)(si, org);
39 >                        (*sfun[source[i].so->otype].of->partit)(si, r);
40                  }
41                  si->sp = -1;
42          }
# Line 71 | Line 66 | tryagain:
66                  vpos[i] += (double)cent[i]/MAXSPART;
67                                          /* compute direction */
68          for (i = 0; i < 3; i++)
69 <                dir[i] = source[si->sn].sloc[i] +
69 >                r->rdir[i] = source[si->sn].sloc[i] +
70                                  vpos[SU]*source[si->sn].ss[SU][i] +
71                                  vpos[SV]*source[si->sn].ss[SV][i] +
72                                  vpos[SW]*source[si->sn].ss[SW][i];
73  
74          if (!(source[si->sn].sflags & SDISTANT))
75                  for (i = 0; i < 3; i++)
76 <                        dir[i] -= org[i];
76 >                        r->rdir[i] -= r->rorg[i];
77                                          /* compute distance */
78 <        if ((d = normalize(dir)) == 0.0)
79 <                goto tryagain;  /* at source! */
78 >        if ((d = normalize(r->rdir)) == 0.0)
79 >                goto nextsample;                /* at source! */
80  
81                                          /* compute sample size */
82          si->dom  = source[si->sn].ss2;
83          if (source[si->sn].sflags & SFLAT) {
84 <                si->dom *= sflatform(si->sn, dir);
85 <                if (si->dom <= FTINY) {         /* behind source */
91 <                        si->sp = si->np;
92 <                        goto tryagain;
93 <                }
94 <                si->dom *= (double)(size[SU]*size[SV])/(MAXSPART*MAXSPART);
84 >                si->dom *= sflatform(si->sn, r->rdir);
85 >                si->dom *= size[SU]*size[SV]/(MAXSPART*(double)MAXSPART);
86          } else if (source[si->sn].sflags & SCYL) {
87 <                si->dom *= scylform(si->sn, dir);
88 <                si->dom *= (double)size[SU]/MAXSPART;
87 >                si->dom *= scylform(si->sn, r->rdir);
88 >                si->dom *= size[SU]/(double)MAXSPART;
89          } else {
90 <                si->dom *= (double)(size[SU]*size[SV]*size[SW]) /
91 <                                (MAXSPART*MAXSPART*MAXSPART) ;
90 >                si->dom *= size[SU]*size[SV]*(double)size[SW] /
91 >                                (MAXSPART*MAXSPART*(double)MAXSPART) ;
92          }
93          if (source[si->sn].sflags & SDISTANT)
94                  return(FHUGE);
95 +        if (si->dom <= 1e-4)
96 +                goto nextsample;                /* behind source? */
97          si->dom /= d*d;
98          return(d);              /* sample OK, return distance */
99   }
# Line 137 | Line 130 | unsigned char  *pt;            /* partition array */
130   }
131  
132  
133 < nopart(si, ro)                  /* single source partition */
133 > nopart(si, r)                   /* single source partition */
134   register SRCINDEX  *si;
135 < FVECT  ro;
135 > RAY  *r;
136   {
137          clrpart(si->spt);
138          setpart(si->spt, 0, S0);
# Line 147 | Line 140 | FVECT  ro;
140   }
141  
142  
143 < cylpart(si, ro)                 /* partition a cylinder */
143 > cylpart(si, r)                  /* partition a cylinder */
144   SRCINDEX  *si;
145 < FVECT  ro;
145 > register RAY  *r;
146   {
147          double  dist2, safedist2, dist2cent, rad2;
148          FVECT  v;
# Line 157 | Line 150 | FVECT  ro;
150          int  pi;
151                                          /* first check point location */
152          clrpart(si->spt);
153 <        sp = &source[si->sn];
154 <        rad2 = 1.273 * DOT(sp->ss[SV],sp->ss[SV]);
155 <        v[0] = ro[0] - sp->sloc[0];
156 <        v[1] = ro[1] - sp->sloc[1];
157 <        v[2] = ro[2] - sp->sloc[2];
153 >        sp = source + si->sn;
154 >        rad2 = 1.365 * DOT(sp->ss[SV],sp->ss[SV]);
155 >        v[0] = r->rorg[0] - sp->sloc[0];
156 >        v[1] = r->rorg[1] - sp->sloc[1];
157 >        v[2] = r->rorg[2] - sp->sloc[2];
158          dist2 = DOT(v,sp->ss[SU]);
159          safedist2 = DOT(sp->ss[SU],sp->ss[SU]);
160          dist2 *= dist2 / safedist2;
# Line 171 | Line 164 | FVECT  ro;
164                  si->np = 0;
165                  return;
166          }
167 <        safedist2 *= 4./(srcsizerat*srcsizerat);
168 <        if (dist2 <= 4.*rad2 ||         /* point too close to subdivide? */
169 <                        dist2cent >= safedist2) {
167 >        safedist2 *= 4.*r->rweight*r->rweight/(srcsizerat*srcsizerat);
168 >        if (dist2 <= 4.*rad2 ||         /* point too close to subdivide */
169 >                        dist2cent >= safedist2) {       /* or too far */
170                  setpart(si->spt, 0, S0);
171                  si->np = 1;
172                  return;
173          }
174          pi = 0;
175 <        si->np = cyl_partit(ro, si->spt, &pi, MAXSPART,
175 >        si->np = cyl_partit(r->rorg, si->spt, &pi, MAXSPART,
176                          sp->sloc, sp->ss[SU], safedist2);
177   }
178  
# Line 223 | Line 216 | double  d2;
216   }
217  
218  
219 < flatpart(si, ro)                        /* partition a flat source */
219 > flatpart(si, r)                         /* partition a flat source */
220   register SRCINDEX  *si;
221 < FVECT  ro;
221 > register RAY  *r;
222   {
223 <        register double  *vp;
223 >        register FLOAT  *vp;
224 >        FVECT  v;
225          double  du2, dv2;
226          int  pi;
227  
228 +        clrpart(si->spt);
229 +        vp = source[si->sn].sloc;
230 +        v[0] = r->rorg[0] - vp[0];
231 +        v[1] = r->rorg[1] - vp[1];
232 +        v[2] = r->rorg[2] - vp[2];
233 +        vp = source[si->sn].snorm;
234 +        if (DOT(v,vp) <= FTINY) {       /* behind source */
235 +                si->np = 0;
236 +                return;
237 +        }
238 +        dv2 = 2.*r->rweight/srcsizerat;
239 +        dv2 *= dv2;
240          vp = source[si->sn].ss[SU];
241 <        du2 = 4./(srcsizerat*srcsizerat) * DOT(vp,vp);
241 >        du2 = dv2 * DOT(vp,vp);
242          vp = source[si->sn].ss[SV];
243 <        dv2 = 4./(srcsizerat*srcsizerat) * DOT(vp,vp);
238 <        clrpart(si->spt);
243 >        dv2 *= DOT(vp,vp);
244          pi = 0;
245 <        si->np = flt_partit(ro, si->spt, &pi, MAXSPART, source[si->sn].sloc,
245 >        si->np = flt_partit(r->rorg, si->spt, &pi, MAXSPART,
246 >                source[si->sn].sloc,
247                  source[si->sn].ss[SU], source[si->sn].ss[SV], du2, dv2);
248   }
249  
# Line 298 | Line 304 | scylform(sn, dir)              /* compute cosine for cylinder's pr
304   int  sn;
305   register FVECT  dir;            /* assume normalized */
306   {
307 <        register double  *dv;
307 >        register FLOAT  *dv;
308          double  d;
309  
310          dv = source[sn].ss[SU];

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines