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

Comparing ray/src/rt/m_mirror.c (file contents):
Revision 2.11 by greg, Tue Apr 19 01:15:06 2005 UTC vs.
Revision 2.13 by greg, Sun Sep 26 15:51:15 2010 UTC

# Line 89 | Line 89 | m_mirror(                      /* shade mirrored ray */
89                          for (i = 0; i < 3; i++)
90                                  nr.rdir[i] = r->rdir[i] + 2.*r->rod*r->ron[i];
91          }
92 +        checknorm(nr.rdir);
93          rayvalue(&nr);
94          multcolor(nr.rcol, nr.rcoef);
95          addcolor(r->rcol, nr.rcol);
# Line 106 | Line 107 | mir_proj(              /* compute a mirror's projection */
107          int  n
108   )
109   {
110 +        double  corr = 1.;
111          FVECT  nv, sc;
112 <        double  od;
113 <        register int  i, j;
112 >        double  od, offs;
113 >        int  i;
114                                  /* get surface normal and offset */
115 <        od = getplaneq(nv, o);
116 <                                /* check for extreme point for behind */
115 >        offs = od = getplaneq(nv, o);
116 >        if (s->sflags & SDISTANT)
117 >                offs = 0.;
118 >                                /* check for extreme point behind */
119 >        if (s->sflags & SCIR) {
120 >                if (s->sflags & (SFLAT|SDISTANT))
121 >                        corr = 1.12837917;      /* correct setflatss() */
122 >                else
123 >                        corr = 1.0/0.7236;      /* correct sphsetsrc() */
124 >        }
125          VCOPY(sc, s->sloc);
126          for (i = s->sflags & SFLAT ? SV : SW; i >= 0; i--)
127 <                if (DOT(nv, s->ss[i]) > 0.)
128 <                        for (j = 0; j < 3; j++)
119 <                                sc[j] += s->ss[i][j];
127 >                if (DOT(nv, s->ss[i]) > offs)
128 >                        VSUM(sc, sc, s->ss[i], corr);
129                  else
130 <                        for (j = 0; j < 3; j++)
131 <                                sc[j] -= s->ss[i][j];
123 <        if (DOT(sc, nv) <= (s->sflags & SDISTANT ? FTINY : od+FTINY))
130 >                        VSUM(sc, sc, s->ss[i], -corr);
131 >        if (DOT(sc, nv) <= offs+FTINY)
132                  return(0);
133                                  /* everything OK -- compute projection */
134          mirrorproj(pm, nv, od);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines