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

Comparing ray/src/rt/srcsupp.c (file contents):
Revision 1.14 by greg, Mon Oct 21 12:58:16 1991 UTC vs.
Revision 2.8 by greg, Tue Nov 7 12:40:30 1995 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1991 Regents of the University of California */
1 > /* Copyright (c) 1995 Regents of the University of California */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ LBL";
# Line 119 | Line 119 | OBJREC  *so;
119          }
120          src->srad = sqrt(src->srad);
121                                                  /* compute size vectors */
122 <        if (f->nv == 4 || (f->nv == 5 &&        /* parallelogram case */
123 <                        dist2(VERTEX(f,0),VERTEX(f,4)) <= FTINY*FTINY))
122 >        if (f->nv == 4)                         /* parallelogram case */
123                  for (j = 0; j < 3; j++) {
124                          src->ss[SU][j] = .5*(VERTEX(f,1)[j]-VERTEX(f,0)[j]);
125                          src->ss[SV][j] = .5*(VERTEX(f,3)[j]-VERTEX(f,0)[j]);
# Line 174 | Line 173 | register OBJREC  *so;
173          for (i = 0; i < 3; i++)
174                  src->ss[SU][i] = src->ss[SV][i] = src->ss[SW][i] = 0.0;
175          for (i = 0; i < 3; i++)
176 <                src->ss[i][i] = .886227 * so->oargs.farg[3];
176 >                src->ss[i][i] = .7236 * so->oargs.farg[3];
177   }
178  
179  
# Line 212 | Line 211 | OBJREC  *so;
211          co = getcone(so, 0);
212          if (CO_R0(co) > .2*co->al)              /* heuristic constraint */
213                  objerror(so, WARNING, "source aspect too small");
214 +        src->sflags |= SCYL;
215          for (i = 0; i < 3; i++)
216                  src->sloc[i] = .5 * (CO_P1(co)[i] + CO_P0(co)[i]);
217 <        src->srad = co->al;
217 >        src->srad = .5*co->al;
218          src->ss2 = 2.*CO_R0(co)*co->al;
219                                                  /* set sampling vectors */
220          for (i = 0; i < 3; i++)
# Line 227 | Line 227 | OBJREC  *so;
227          fcross(src->ss[SW], src->ss[SV], co->ad);
228          normalize(src->ss[SW]);
229          for (i = 0; i < 3; i++)
230 <                src->ss[SW][i] *= .886227 * CO_R0(co);
230 >                src->ss[SW][i] *= .8559 * CO_R0(co);
231          fcross(src->ss[SV], src->ss[SW], co->ad);
232   }
233  
# Line 238 | Line 238 | register OBJREC  *m;
238   {
239          register SPOT  *ns;
240  
241 +        if ((ns = (SPOT *)m->os) != NULL)
242 +                return(ns);
243          if ((ns = (SPOT *)malloc(sizeof(SPOT))) == NULL)
244                  return(NULL);
245          ns->siz = 2.0*PI * (1.0 - cos(PI/180.0/2.0 * m->oargs.farg[3]));
246          VCOPY(ns->aim, m->oargs.farg+4);
247          if ((ns->flen = normalize(ns->aim)) == 0.0)
248                  objerror(m, USER, "zero focus vector");
249 +        m->os = (char *)ns;
250          return(ns);
251   }
252  
253  
254 + spotout(r, s)                   /* check if we're outside spot region */
255 + register RAY  *r;
256 + register SPOT  *s;
257 + {
258 +        double  d;
259 +        FVECT  vd;
260 +        
261 +        if (s == NULL)
262 +                return(0);
263 +        if (s->flen < -FTINY) {         /* distant source */
264 +                vd[0] = s->aim[0] - r->rorg[0];
265 +                vd[1] = s->aim[1] - r->rorg[1];
266 +                vd[2] = s->aim[2] - r->rorg[2];
267 +                d = DOT(r->rdir,vd);
268 +                /*                      wrong side?
269 +                if (d <= FTINY)
270 +                        return(1);      */
271 +                d = DOT(vd,vd) - d*d;
272 +                if (PI*d > s->siz)
273 +                        return(1);      /* out */
274 +                return(0);      /* OK */
275 +        }
276 +                                        /* local source */
277 +        if (s->siz < 2.0*PI * (1.0 + DOT(s->aim,r->rdir)))
278 +                return(1);      /* out */
279 +        return(0);      /* OK */
280 + }
281 +
282 +
283   double
284   fgetmaxdisk(ocent, op)          /* get center and squared radius of face */
285   FVECT  ocent;
# Line 461 | Line 493 | double  r1s, r2s;              /* radii squared */
493          for (i = 0; i < 3; i++)
494                  cc[i] = c1[i] + l*disp[i];
495          return(a2);
464 }
465
466
467 sourcehit(r)                    /* check to see if ray hit distant source */
468 register RAY  *r;
469 {
470        int  first, last;
471        register int  i;
472
473        if (r->rsrc >= 0) {             /* check only one if aimed */
474                first = last = r->rsrc;
475        } else {                        /* otherwise check all */
476                first = 0; last = nsources-1;
477        }
478        for (i = first; i <= last; i++)
479                if ((source[i].sflags & (SDISTANT|SVIRTUAL)) == SDISTANT)
480                        /*
481                         * Check to see if ray is within
482                         * solid angle of source.
483                         */
484                        if (2.0*PI * (1.0 - DOT(source[i].sloc,r->rdir))
485                                        <= source[i].ss2) {
486                                r->ro = source[i].so;
487                                if (!(source[i].sflags & SSKIP))
488                                        break;
489                        }
490
491        if (r->ro != NULL) {
492                for (i = 0; i < 3; i++)
493                        r->ron[i] = -r->rdir[i];
494                r->rod = 1.0;
495                r->rox = NULL;
496                return(1);
497        }
498        return(0);
499 }
500
501
502 #define  wrongsource(m, r)      (r->rsrc>=0 && \
503                                source[r->rsrc].so!=r->ro && \
504                                (m->otype!=MAT_ILLUM || \
505                        objptr(source[r->rsrc].so->omod)->otype==MAT_ILLUM))
506
507 #define  distglow(m, r)         (m->otype==MAT_GLOW && \
508                                r->rot > m->oargs.farg[3])
509
510 #define  badambient(m, r)       ((r->crtype&(AMBIENT|SHADOW))==AMBIENT && \
511                                !distglow(m, r))
512
513 #define  passillum(m, r)        (m->otype==MAT_ILLUM && \
514                                !(r->rsrc>=0&&source[r->rsrc].so==r->ro))
515
516 #define  srcignore(m, r)        (directinvis && !(r->crtype&SHADOW) && \
517                                !distglow(m, r))
518
519
520 m_light(m, r)                   /* ray hit a light source */
521 register OBJREC  *m;
522 register RAY  *r;
523 {
524                                                /* check for over-counting */
525        if (wrongsource(m, r) || badambient(m, r))
526                return;
527                                                /* check for passed illum */
528        if (passillum(m, r)) {
529                if (m->oargs.nsargs < 1 || !strcmp(m->oargs.sarg[0], VOIDID))
530                        raytrans(r);
531                else
532                        rayshade(r, modifier(m->oargs.sarg[0]));
533                return;
534        }
535                                        /* otherwise treat as source */
536                                                /* check for behind */
537        if (r->rod < 0.0)
538                return;
539                                                /* check for invisibility */
540        if (srcignore(m, r))
541                return;
542                                                /* get distribution pattern */
543        raytexture(r, m->omod);
544                                                /* get source color */
545        setcolor(r->rcol, m->oargs.farg[0],
546                          m->oargs.farg[1],
547                          m->oargs.farg[2]);
548                                                /* modify value */
549        multcolor(r->rcol, r->pcol);
496   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines