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

Comparing ray/src/rt/m_mist.c (file contents):
Revision 2.9 by gregl, Wed May 28 14:38:32 1997 UTC vs.
Revision 2.13 by schorsch, Mon Jun 30 14:59:12 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id";
3   #endif
6
4   /*
5   * Mist volumetric material.
6   */
7  
8 < #include  "ray.h"
8 > #include "copyright.h"
9  
10 + #include <string.h>
11 +
12 + #include  "ray.h"
13   #include  "source.h"
14  
15   /*
# Line 50 | Line 50 | static char SCCSid[] = "$SunId$ LBL";
50  
51   #define RELAYDELIM      '>'             /* relay delimiter character */
52  
53 extern COLOR  cextinction;              /* global coefficient of extinction */
54 extern COLOR  salbedo;                  /* global scattering albedo */
55 extern double  seccg;                   /* global scattering eccentricity */
53  
57
54   static int
55   inslist(sl, n)          /* return index of source n if it's in list sl */
56   register int  *sl;
# Line 74 | Line 70 | srcmatch(sp, id)       /* check for an id match on a light s
70   register SRCREC  *sp;
71   register char  *id;
72   {
77        extern char  *index();
73          register char  *cp;
74                                                  /* check for relay sources */
75 <        while ((cp = index(id, RELAYDELIM)) != NULL) {
75 >        while ((cp = strchr(id, RELAYDELIM)) != NULL) {
76                  if (!(sp->sflags & SVIRTUAL) || sp->so == NULL)
77                          return(0);
78                  if (strncmp(id, sp->so->oname, cp-id) || sp->so->oname[cp-id])
# Line 91 | Line 86 | register char  *id;
86   }
87  
88  
89 < static
89 > static void
90   add2slist(r, sl)        /* add source list to ray's */
91   register RAY  *r;
92   register int  *sl;
# Line 113 | Line 108 | register int  *sl;
108   }
109  
110  
111 + int
112   m_mist(m, r)            /* process a ray entering or leaving some mist */
113   OBJREC  *m;
114   register RAY  *r;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines