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 1.13 by greg, Mon Aug 26 10:16:56 1991 UTC

# Line 88 | Line 88 | char  *nm;
88                      h = ilhash(dim, 3) + i;
89                      multisamp(sp, 2, urand(h));
90                      r1 = (dim[1] + sp[0])/nalt;
91 <                    r2 = (dim[2] + sp[1])/nazi;
91 >                    r2 = (dim[2] + sp[1] - .5)/nazi;
92                      flatdir(dn, r1, r2);
93                      for (j = 0; j < 3; j++)
94                          dir[j] = -dn[0]*u[j] - dn[1]*v[j] - dn[2]*fa->norm[j];
# Line 116 | Line 116 | char  *nm;
116                  }
117          rayflush(rt);
118                                  /* write out the face and its distribution */
119 <        average(il, distarr, nalt*nazi);
120 <        if (il->sampdens > 0)
121 <                flatout(il, distarr, nalt, nazi, u, v, fa->norm);
122 <        illumout(il, ob);
119 >        if (average(il, distarr, nalt*nazi)) {
120 >                if (il->sampdens > 0)
121 >                        flatout(il, distarr, nalt, nazi, u, v, fa->norm);
122 >                illumout(il, ob);
123 >        } else if (!(il->flags & IL_LIGHT))
124 >                printobj(il->altmat, ob);
125                                  /* clean up */
126          freeface(ob);
127          free((char *)distarr);
# Line 164 | Line 166 | char  *nm;
166                      multisamp(sp, 4, urand(ilhash(dim,3)+i));
167                                          /* random direction */
168                      r1 = (dim[1] + sp[0])/nalt;
169 <                    r2 = (dim[2] + sp[1])/nazi;
169 >                    r2 = (dim[2] + sp[1] - .5)/nazi;
170                      rounddir(dir, r1, r2);
171                                          /* random location */
172                      mkaxes(u, v, dir);          /* yuck! */
# Line 183 | Line 185 | char  *nm;
185                  }
186          rayflush(rt);
187                                  /* write out the sphere and its distribution */
188 <        average(il, distarr, nalt*nazi);
189 <        if (il->sampdens > 0)
190 <                roundout(il, distarr, nalt, nazi);
191 <        else
192 <                objerror(ob, WARNING, "diffuse distribution");
193 <        illumout(il, ob);
188 >        if (average(il, distarr, nalt*nazi)) {
189 >                if (il->sampdens > 0)
190 >                        roundout(il, distarr, nalt, nazi);
191 >                else
192 >                        objerror(ob, WARNING, "diffuse distribution");
193 >                illumout(il, ob);
194 >        } else if (!(il->flags & IL_LIGHT))
195 >                printobj(il->altmat, ob);
196                                  /* clean up */
197          free((char *)distarr);
198   }
# Line 232 | Line 236 | char  *nm;
236                      multisamp(sp, 4, urand(ilhash(dim,3)+i));
237                                          /* random direction */
238                      r1 = (dim[1] + sp[0])/nalt;
239 <                    r2 = (dim[2] + sp[1])/nalt;
239 >                    r2 = (dim[2] + sp[1] - .5)/nazi;
240                      flatdir(dn, r1, r2);
241                      for (j = 0; j < 3; j++)
242                          dir[j] = -dn[0]*u[j] - dn[1]*v[j] - dn[2]*co->ad[j];
# Line 251 | Line 255 | char  *nm;
255                  }
256          rayflush(rt);
257                                  /* write out the ring and its distribution */
258 <        average(il, distarr, nalt*nazi);
259 <        if (il->sampdens > 0)
260 <                flatout(il, distarr, nalt, nazi, u, v, co->ad);
261 <        illumout(il, ob);
258 >        if (average(il, distarr, nalt*nazi)) {
259 >                if (il->sampdens > 0)
260 >                        flatout(il, distarr, nalt, nazi, u, v, co->ad);
261 >                illumout(il, ob);
262 >        } else if (!(il->flags & IL_LIGHT))
263 >                printobj(il->altmat, ob);
264                                  /* clean up */
265          freecone(ob);
266          free((char *)distarr);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines