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

Comparing ray/src/rt/source.c (file contents):
Revision 1.25 by greg, Thu Dec 13 21:49:23 1990 UTC vs.
Revision 1.28 by greg, Fri Dec 21 11:32:39 1990 UTC

# Line 237 | Line 237 | register int  sn;              /* source number */
237                                                  /* domega constant */
238                  return(source[sn].ss2);
239  
240        else {
240                                                  /* check proximity */
241 <                if (source[sn].sflags & SPROX &&
242 <                                d > source[sn].sl.prox)
243 <                        return(0.0);
244 <
245 <                if (norm != NULL)
246 <                        ddot /= d;
247 <                else
248 <                        ddot = 1.0;
241 >        if (source[sn].sflags & SPROX &&
242 >                        d > source[sn].sl.prox)
243 >                return(0.0);
244 >                                                /* compute dot product */
245 >        if (norm != NULL)
246 >                ddot /= d;
247 >        else
248 >                ddot = 1.0;
249                                                  /* check angle */
250 <                if (source[sn].sflags & SSPOT) {
251 <                        if (source[sn].sl.s->siz < 2.0*PI *
250 >        if (source[sn].sflags & SSPOT) {
251 >                if (source[sn].sl.s->siz < 2.0*PI *
252                                  (1.0 + DOT(source[sn].sl.s->aim,sr->rdir)))
253 <                                return(0.0);
254 <                        d += source[sn].sl.s->flen;
256 <                }
257 <                                                /* return domega */
258 <                return(ddot*source[sn].ss2/(d*d));
253 >                        return(0.0);
254 >                d += source[sn].sl.s->flen;     /* adjust length */
255          }
256 +                                                /* compute domega */
257 +        return(ddot*source[sn].ss2/(d*d));
258   }
259  
260  
# Line 288 | Line 286 | register RAY  *r;
286                  for (i = 0; i < 3; i++)
287                          r->ron[i] = -r->rdir[i];
288                  r->rod = 1.0;
289 <                r->rofs = 1.0; setident4(r->rofx);
292 <                r->robs = 1.0; setident4(r->robx);
289 >                r->rox = NULL;
290                  return(1);
291          }
292          return(0);
# Line 347 | Line 344 | char  *p;                      /* data for f */
344                                  "aiming failure for light source \"%s\"",
345                                          source[sn].so->oname);
346                          error(WARNING, errmsg);
347 +                        cntord[sn].brt = 0.0;
348                          continue;
349                  }
350                                                  /* compute contribution */
# Line 377 | Line 375 | char  *p;                      /* data for f */
375          for (sn = 0; sn < ncnts; sn++) {
376                                                  /* check threshold */
377                  if ((sn+nshadcheck>=ncnts ? cntord[sn].brt :
378 <                                cntord[sn].brt-cntord[sn+nshadcheck].brt) <
379 <                                ourthresh*bright(r->rcol))
378 >                                cntord[sn].brt-cntord[sn+nshadcheck].brt)
379 >                                < ourthresh*bright(r->rcol))
380                          break;
381                                                  /* get statistics */
382                  hwt = (double)source[cntord[sn].sno].nhits /

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines