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

Comparing ray/src/px/pcomb.c (file contents):
Revision 2.35 by greg, Mon Jan 24 19:29:39 2005 UTC vs.
Revision 2.37 by greg, Tue Mar 1 23:16:42 2005 UTC

# Line 439 | Line 439 | advance(void)                  /* read in data for next scanline */
439                                  eputs(": read error\n");
440                                  quit(1);
441                          }
442 <                        if (fabs(colval(input[i].coef,RED)-1.0) > 1e-3 ||
443 <                                fabs(colval(input[i].coef,GRN)-1.0) > 1e-3 ||
444 <                                fabs(colval(input[i].coef,BLU)-1.0) > 1e-3)
445 <                                for (j = 0; j < xmax; j++)  /* adjust color */
446 <                                        multcolor(st[j], input[i].coef);
442 >                        for (j = 0; j < xmax; j++)      /* adjust color */
443 >                                multcolor(st[j], input[i].coef);
444                  }
445   }
446  
# Line 601 | Line 598 | l_psize(char *nm)              /* compute pixel size in steradians
598                  if (input[fn].vw.type == 0)
599                          errno = EDOM;
600                  else if (input[fn].vw.type != VT_PAR &&
601 <                                funvalue(vray[6], 1, &d) > FTINY) {
601 >                                funvalue(vray[6], 1, &d) >= -FTINY) {
602                          for (i = 0; i < 3; i++)
603                                  dir0[i] = funvalue(vray[3+i], 1, &d);
604                          pix2loc(locx, &input[fn].rs, xscan+1, ymax-1-yscan);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines