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

Comparing ray/src/common/data.c (file contents):
Revision 2.2 by greg, Mon Aug 19 18:06:14 2024 UTC vs.
Revision 2.3 by greg, Fri Feb 28 21:07:18 2025 UTC

# Line 462 | Line 462 | data_interp(DATARRAY *dp, double *pt, double coef, DAT
462                  c0 = 1./(i-1 - x);
463                  c1 = -2.*c0;
464          } else if (x < i-1) {
465 <                c1 = 1./(i - x);
465 >                c1 = 1./(x - i);
466                  c0 = -2.*c1;
467          } else {
468                  c0 = i+1 - x;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines