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 2.9 by schorsch, Thu Jun 26 00:58:10 2003 UTC vs.
Revision 2.14 by greg, Wed Dec 10 07:07:07 2008 UTC

# Line 57 | Line 57 | nextsample:
57                  d = urand(ilhash(dimlist,ndims+2)+samplendx);
58                  if (source[si->sn].sflags & SFLAT) {
59                          multisamp(vpos, 2, d);
60 <                        vpos[2] = 0.5;
60 >                        vpos[SW] = 0.5;
61                  } else
62                          multisamp(vpos, 3, d);
63                  for (i = 0; i < 3; i++)
# Line 68 | Line 68 | nextsample:
68  
69          for (i = 0; i < 3; i++)
70                  vpos[i] += (double)cent[i]/MAXSPART;
71 +                                        /* avoid circular aiming failures */
72 +        if ((source[si->sn].sflags & SCIR) && (si->np > 1 || dstrsrc > 0.7)) {
73 +                FVECT   trim;
74 +                if (source[si->sn].sflags & (SFLAT|SDISTANT)) {
75 +                        d = 1.12837917;         /* correct setflatss() */
76 +                        trim[SU] = d*sqrt(1.0 - 0.5*vpos[SV]*vpos[SV]);
77 +                        trim[SV] = d*sqrt(1.0 - 0.5*vpos[SU]*vpos[SU]);
78 +                        trim[SW] = 0.0;
79 +                } else {
80 +                        trim[SW] = trim[SU] = vpos[SU]*vpos[SU];
81 +                        d = vpos[SV]*vpos[SV];
82 +                        if (d > trim[SW]) trim[SW] = d;
83 +                        trim[SU] += d;
84 +                        d = vpos[SW]*vpos[SW];
85 +                        if (d > trim[SW]) trim[SW] = d;
86 +                        trim[SU] += d;
87 +                        d = 1.0/0.7236;         /* correct sphsetsrc() */
88 +                        trim[SW] = trim[SV] = trim[SU] =
89 +                                        d*sqrt(trim[SW]/trim[SU]);
90 +                }
91 +                for (i = 0; i < 3; i++)
92 +                        vpos[i] *= trim[i];
93 +        }
94                                          /* compute direction */
95          for (i = 0; i < 3; i++)
96                  r->rdir[i] = source[si->sn].sloc[i] +
# Line 114 | Line 137 | unsigned char  *pt;            /* partition array */
137                                          /* check this partition */
138          p = spart(pt, pp[0]);
139          pp[0]++;
140 <        if (p == S0)                    /* leaf partition */
140 >        if (p == S0) {                  /* leaf partition */
141                  if (pp[1]) {
142                          pp[1]--;
143                          return(0);      /* not there yet */
144                  } else
145                          return(1);      /* we've arrived */
146 +        }
147                                  /* else check lower */
148          sz[p] >>= 1;
149          ct[p] -= sz[p];
# Line 240 | Line 264 | register RAY  *r;
264          v[1] = r->rorg[1] - vp[1];
265          v[2] = r->rorg[2] - vp[2];
266          vp = source[si->sn].snorm;
267 <        if (DOT(v,vp) <= FTINY) {       /* behind source */
267 >        if (DOT(v,vp) <= 0.) {          /* behind source */
268                  si->np = 0;
269                  return;
270          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines