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

Comparing ray/src/util/rsensor.c (file contents):
Revision 2.12 by greg, Mon Sep 26 15:33:29 2011 UTC vs.
Revision 2.14 by greg, Tue Sep 30 23:14:34 2014 UTC

# Line 398 | Line 398 | init_ptable(
398                  tvals[i] = 1. - ( (1.-frac)*cos(thdiv[t]) +
399                                                  frac*cos(thdiv[t+1]) );
400                                  /* offset b/c sensor values are centered */
401 <                if (!t || (t < sntp[0]-1) & (frac >= 0.5))
401 >                if ((t < sntp[0]-1) & (!t | (frac >= 0.5))) {
402                          frac -= 0.5;
403 <                else {
403 >                } else {
404                          frac += 0.5;
405                          --t;
406                  }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines