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

Comparing ray/src/gen/mkillum2.c (file contents):
Revision 1.11 by greg, Thu Aug 22 12:12:23 1991 UTC vs.
Revision 2.4 by greg, Thu Aug 13 10:03:19 1992 UTC

# Line 26 | Line 26 | char  *nm;
26          sprintf(errmsg, "(%s): cannot make illum for %s \"%s\"",
27                          nm, ofun[ob->otype].funame, ob->oname);
28          error(WARNING, errmsg);
29 <        if (!(il->flags & IL_LIGHT))
30 <                printobj(il->altmat, ob);
29 >        printobj(il->altmat, ob);
30   }
31  
32  
# Line 67 | Line 66 | char  *nm;
66          distarr = (float *)calloc(n, 3*sizeof(float));
67          if (distarr == NULL)
68                  error(SYSTEM, "out of memory in o_face");
69 <        mkaxes(u, v, fa->norm);
69 >                                /* take first edge longer than sqrt(area) */
70 >        for (j = fa->nv-1, i = 0; i < fa->nv; j = i++) {
71 >                u[0] = VERTEX(fa,i)[0] - VERTEX(fa,j)[0];
72 >                u[1] = VERTEX(fa,i)[1] - VERTEX(fa,j)[1];
73 >                u[2] = VERTEX(fa,i)[2] - VERTEX(fa,j)[2];
74 >                if (DOT(u,u) >= fa->area-FTINY)
75 >                        break;
76 >        }
77 >        if (i < fa->nv) {       /* got one! -- let's align our axes */
78 >                normalize(u);
79 >                fcross(v, fa->norm, u);
80 >        } else                  /* oh well, we'll just have to wing it */
81 >                mkaxes(u, v, fa->norm);
82 >                                /* now, find limits in (u,v) coordinates */
83          ur[0] = vr[0] = FHUGE;
84          ur[1] = vr[1] = -FHUGE;
85          for (i = 0; i < fa->nv; i++) {
# Line 88 | Line 100 | char  *nm;
100                      h = ilhash(dim, 3) + i;
101                      multisamp(sp, 2, urand(h));
102                      r1 = (dim[1] + sp[0])/nalt;
103 <                    r2 = (dim[2] + sp[1])/nazi;
103 >                    r2 = (dim[2] + sp[1] - .5)/nazi;
104                      flatdir(dn, r1, r2);
105                      for (j = 0; j < 3; j++)
106                          dir[j] = -dn[0]*u[j] - dn[1]*v[j] - dn[2]*fa->norm[j];
# Line 116 | Line 128 | char  *nm;
128                  }
129          rayflush(rt);
130                                  /* write out the face and its distribution */
131 <        average(il, distarr, nalt*nazi);
132 <        if (il->sampdens > 0)
133 <                flatout(il, distarr, nalt, nazi, u, v, fa->norm);
134 <        illumout(il, ob);
131 >        if (average(il, distarr, nalt*nazi)) {
132 >                if (il->sampdens > 0)
133 >                        flatout(il, distarr, nalt, nazi, u, v, fa->norm);
134 >                illumout(il, ob);
135 >        } else
136 >                printobj(il->altmat, ob);
137                                  /* clean up */
138          freeface(ob);
139          free((char *)distarr);
# Line 164 | Line 178 | char  *nm;
178                      multisamp(sp, 4, urand(ilhash(dim,3)+i));
179                                          /* random direction */
180                      r1 = (dim[1] + sp[0])/nalt;
181 <                    r2 = (dim[2] + sp[1])/nazi;
181 >                    r2 = (dim[2] + sp[1] - .5)/nazi;
182                      rounddir(dir, r1, r2);
183                                          /* random location */
184                      mkaxes(u, v, dir);          /* yuck! */
# Line 183 | Line 197 | char  *nm;
197                  }
198          rayflush(rt);
199                                  /* write out the sphere and its distribution */
200 <        average(il, distarr, nalt*nazi);
201 <        if (il->sampdens > 0)
202 <                roundout(il, distarr, nalt, nazi);
203 <        else
204 <                objerror(ob, WARNING, "diffuse distribution");
205 <        illumout(il, ob);
200 >        if (average(il, distarr, nalt*nazi)) {
201 >                if (il->sampdens > 0)
202 >                        roundout(il, distarr, nalt, nazi);
203 >                else
204 >                        objerror(ob, WARNING, "diffuse distribution");
205 >                illumout(il, ob);
206 >        } else
207 >                printobj(il->altmat, ob);
208                                  /* clean up */
209          free((char *)distarr);
210   }
# Line 232 | Line 248 | char  *nm;
248                      multisamp(sp, 4, urand(ilhash(dim,3)+i));
249                                          /* random direction */
250                      r1 = (dim[1] + sp[0])/nalt;
251 <                    r2 = (dim[2] + sp[1])/nalt;
251 >                    r2 = (dim[2] + sp[1] - .5)/nazi;
252                      flatdir(dn, r1, r2);
253                      for (j = 0; j < 3; j++)
254                          dir[j] = -dn[0]*u[j] - dn[1]*v[j] - dn[2]*co->ad[j];
# Line 251 | Line 267 | char  *nm;
267                  }
268          rayflush(rt);
269                                  /* write out the ring and its distribution */
270 <        average(il, distarr, nalt*nazi);
271 <        if (il->sampdens > 0)
272 <                flatout(il, distarr, nalt, nazi, u, v, co->ad);
273 <        illumout(il, ob);
270 >        if (average(il, distarr, nalt*nazi)) {
271 >                if (il->sampdens > 0)
272 >                        flatout(il, distarr, nalt, nazi, u, v, co->ad);
273 >                illumout(il, ob);
274 >        } else
275 >                printobj(il->altmat, ob);
276                                  /* clean up */
277          freecone(ob);
278          free((char *)distarr);
# Line 285 | Line 303 | register struct rtproc  *rt;
303          if (rt->nrays <= 0)
304                  return;
305          bzero(rt->buf+6*rt->nrays, 6*sizeof(float));
306 +        errno = 0;
307          if ( process(rt->pd, (char *)rt->buf, (char *)rt->buf,
308                          3*sizeof(float)*rt->nrays,
309                          6*sizeof(float)*(rt->nrays+1)) <

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines