Changeset 19881 for trunk/psphot/src/psphotSummaryPlots.c
- Timestamp:
- Oct 3, 2008, 11:00:18 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/psphot/src/psphotSummaryPlots.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotSummaryPlots.c
r13477 r19881 61 61 if (source->moments == NULL) continue; 62 62 63 xFaint->data.F32[nF] = source->moments-> Sx;64 yFaint->data.F32[nF] = source->moments-> Sy;63 xFaint->data.F32[nF] = source->moments->Mxx; 64 yFaint->data.F32[nF] = source->moments->Myy; 65 65 nF++; 66 66 … … 68 68 if (source->moments->SN < 25) continue; 69 69 70 xBright->data.F32[nB] = source->moments-> Sx;71 yBright->data.F32[nB] = source->moments-> Sy;70 xBright->data.F32[nB] = source->moments->Mxx; 71 yBright->data.F32[nB] = source->moments->Myy; 72 72 nB++; 73 73 } … … 160 160 161 161 psEllipseMoments moments; 162 moments.x2 = source->moments-> Sx;163 moments. y2 = source->moments->Sy;164 moments. xy = source->moments->Sxy;162 moments.x2 = source->moments->Mxx; 163 moments.xy = source->moments->Mxy; 164 moments.y2 = source->moments->Myy; 165 165 166 166 psEllipseShape shape;
Note:
See TracChangeset
for help on using the changeset viewer.
