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

Comparing ray/src/common/interp2d.c (file contents):
Revision 2.8 by greg, Tue Feb 12 18:13:28 2013 UTC vs.
Revision 2.9 by greg, Tue Feb 12 18:41:39 2013 UTC

# Line 303 | Line 303 | interp2_topsamp(float wt[], int si[], const int n, INT
303                                          /* identify top n weights */
304          for (i = ip->ns; i--; ) {
305                  const double    wti = get_wt(ip, i, x, y);
306 +                if (wti <= 1e-9)
307 +                        continue;
308                  for (j = nn; j > 0; j--) {
309                          if (wt[j-1] >= wti)
310                                  break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines