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

Comparing ray/src/rt/m_clip.c (file contents):
Revision 2.3 by greg, Mon Feb 12 17:04:08 1996 UTC vs.
Revision 2.11 by greg, Tue Aug 20 21:37:46 2013 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1986 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   *  m_clip.c - routine for clipped (cut) objects.
9 *
10 *     3/17/86
6   */
7  
8 + #include "copyright.h"
9 +
10   #include  "ray.h"
11 + #include  "rtotypes.h"
12  
13   /*
14   *  Clipping objects permit holes and sections to be taken out
# Line 21 | Line 19 | static char SCCSid[] = "$SunId$ LBL";
19   */
20  
21  
22 < m_clip(m, r)                    /* clip objects from ray */
23 < register OBJREC  *m;
24 < register RAY  *r;
22 > int
23 > m_clip(                 /* clip objects from ray */
24 >        OBJREC  *m,
25 >        RAY  *r
26 > )
27   {
28          OBJECT  cset[MAXSET+1], *modset;
29 +        OBJECT  obj, mod;
30          int  entering;
31 <        register int  i;
31 >        int  i;
32  
33 +        obj = objndx(m);
34          if ((modset = (OBJECT *)m->os) == NULL) {
33                OBJECT  obj, mod;
34
35                  if (m->oargs.nsargs < 1 || m->oargs.nsargs > MAXSET)
36                          objerror(m, USER, "bad # arguments");
37                obj = objndx(m);
37                  modset = (OBJECT *)malloc((m->oargs.nsargs+1)*sizeof(OBJECT));
38                  if (modset == NULL)
39                          error(SYSTEM, "out of memory in m_clip");
# Line 56 | Line 55 | register RAY  *r;
55                  }
56                  m->os = (char *)modset;
57          }
58 +        if (r == NULL)
59 +                return(0);                      /* just initializing */
60          if (r->clipset != NULL)
61                  setcopy(cset, r->clipset);
62          else
63                  cset[0] = 0;
64  
65 <        entering = r->rod > 0.0;                /* entering clipped region? */
65 >        entering = (r->rod > 0.0);              /* entering clipped region? */
66  
67 <        for (i = modset[0]; i > 0; i--) {
67 >        for (i = modset[0]; i > 0; i--)
68                  if (entering) {
69                          if (!inset(cset, modset[i])) {
70                                  if (cset[0] >= MAXSET)
71                                          error(INTERNAL, "set overflow in m_clip");
72                                  insertelem(cset, modset[i]);
73                          }
74 <                } else {
75 <                        if (inset(cset, modset[i]))
76 <                                deletelem(cset, modset[i]);
76 <                }
77 <        }
74 >                } else if (inset(cset, modset[i]))
75 >                        deletelem(cset, modset[i]);
76 >
77                                          /* compute ray value */
78          r->newcset = cset;
79          if (strcmp(m->oargs.sarg[0], VOIDID)) {
80                  int  inside = 0;
81 <                register RAY  *rp;
81 >                const RAY  *rp;
82                                          /* check for penetration */
83                  for (rp = r; rp->parent != NULL; rp = rp->parent)
84                          if (!(rp->rtype & RAYREFL) && rp->parent->ro != NULL
85 <                                        && inset(modset, rp->parent->ro->omod))
85 >                                        && inset(modset, rp->parent->ro->omod)) {
86                                  if (rp->parent->rod > 0.0)
87                                          inside++;
88                                  else
89                                          inside--;
90 +                        }
91                  if (inside > 0) {       /* we just hit the object */
92                          flipsurface(r);
93 <                        return(rayshade(r, modifier(m->oargs.sarg[0])));
93 >                        return(rayshade(r, lastmod(obj, m->oargs.sarg[0])));
94                  }
95          }
96          raytrans(r);                    /* else transfer ray */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines