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.39 by greg, Thu Jul 11 16:39:03 1991 UTC vs.
Revision 1.42 by greg, Mon Aug 12 08:20:49 1991 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1990 Regents of the University of California */
1 > /* Copyright (c) 1991 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 128 | Line 128 | register int  sn;              /* source number */
128          sr->rsrc = sn;                          /* remember source */
129                                                  /* get source direction */
130          if (source[sn].sflags & SDISTANT) {
131                if (source[sn].sflags & SSPOT) {        /* check location */
132                        for (i = 0; i < 3; i++)
133                                vd[i] = sr->rorg[i] - source[sn].sl.s->aim[i];
134                        d = DOT(source[sn].sloc,vd);
135                        d = DOT(vd,vd) - d*d;
136                        if (PI*d > source[sn].sl.s->siz)
137                                return(0.0);
138                }
131                                                  /* constant direction */
132                  VCOPY(sr->rdir, source[sn].sloc);
133          } else {                                /* compute direction */
# Line 162 | Line 154 | register int  sn;              /* source number */
154                  }
155                  for (i = 0; i < 3; i++)         /* offset source direction */
156                          sr->rdir[i] += vd[i];
157 +                                                /* normalize */
158 +                d = normalize(sr->rdir);
159  
160 <        } else if (source[sn].sflags & SDISTANT)
161 <                                                /* already normalized */
162 <                return(source[sn].ss2);
160 >        } else if (!(source[sn].sflags & SDISTANT))
161 >                                                /* normalize direction */
162 >                d = normalize(sr->rdir);
163  
164 <        if ((d = normalize(sr->rdir)) == 0.0)
165 <                                                /* at source! */
164 >        if (source[sn].sflags & SDISTANT) {
165 >                if (source[sn].sflags & SSPOT) {        /* check location */
166 >                        for (i = 0; i < 3; i++)
167 >                                vd[i] = source[sn].sl.s->aim[i] - sr->rorg[i];
168 >                        d = DOT(sr->rdir,vd);
169 >                        if (d <= FTINY)
170 >                                return(0.0);
171 >                        d = DOT(vd,vd) - d*d;
172 >                        if (PI*d > source[sn].sl.s->siz)
173 >                                return(0.0);
174 >                }
175 >                return(source[sn].ss2);         /* domega constant */
176 >        }
177 >                                                /* check direction */
178 >        if (d == 0.0)
179                  return(0.0);
173        
174        if (source[sn].sflags & SDISTANT)
175                                                /* domega constant */
176                return(source[sn].ss2);
177
180                                                  /* check proximity */
181          if (source[sn].sflags & SPROX &&
182                          d > source[sn].sl.prox)
# Line 245 | Line 247 | RAY  *r;                       /* ray that hit surface */
247   int  (*f)();                    /* direct component coefficient function */
248   char  *p;                       /* data for f */
249   {
250 +        extern int  (*trace)();
251          extern double  pow();
252          register int  sn;
253          int  nshadcheck, ncnts;
# Line 314 | Line 317 | char  *p;                      /* data for f */
317                                  source[cntord[sn].sno].sflags & SFOLLOW )) {
318                                                  /* follow entire path */
319                          raycont(&sr);
320 +                        if (trace != NULL)
321 +                                (*trace)(&sr);  /* trace execution */
322                          if (bright(sr.rcol) <= FTINY)
323                                  continue;       /* missed! */
324                          copycolor(srccnt[cntord[sn].sno].val, sr.rcol);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines