- Timestamp:
- Aug 19, 2009, 12:16:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20090715/psphot/src/psphotPetrosianVisual.c
r25105 r25128 26 26 graphdata->xmin = graphdata->xmax = xVec->data.F32[0]; 27 27 for (int i = 1; i < xVec->n; i++) { 28 if (!isfinite(xVec->data.F32[i])) continue; 28 29 graphdata->xmin = PS_MIN (graphdata->xmin, xVec->data.F32[i]); 29 30 graphdata->xmax = PS_MAX (graphdata->xmax, xVec->data.F32[i]); … … 36 37 graphdata->ymin = graphdata->ymax = yVec->data.F32[0]; 37 38 for (int i = 1; i < yVec->n; i++) { 39 if (!isfinite(yVec->data.F32[i])) continue; 38 40 graphdata->ymin = PS_MIN (graphdata->ymin, yVec->data.F32[i]); 39 41 graphdata->ymax = PS_MAX (graphdata->ymax, yVec->data.F32[i]);
Note:
See TracChangeset
for help on using the changeset viewer.
