Changeset 9730 for trunk/psLib/src/astro/psCoord.c
- Timestamp:
- Oct 24, 2006, 12:55:05 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astro/psCoord.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.c
r9540 r9730 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.12 5$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-10- 13 22:04:58$12 * @version $Revision: 1.126 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-10-24 22:52:55 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 795 795 psVector *xOut = psVectorAlloc(numCoords, PS_TYPE_F64); 796 796 psVector *yOut = psVectorAlloc(numCoords, PS_TYPE_F64); 797 for ( psS32g = 0; g < numCoords; g++) {797 for (int g = 0; g < numCoords; g++) { 798 798 xIn->data.F64[g] = ((psPlane *) source->data[g])->x; 799 xIn->n++;800 799 yIn->data.F64[g] = ((psPlane *) source->data[g])->y; 801 yIn->n++;802 800 xOut->data.F64[g] = ((psPlane *) dest->data[g])->x; 803 xOut->n++;804 801 yOut->data.F64[g] = ((psPlane *) dest->data[g])->y; 805 yOut->n++;806 802 } 807 803
Note:
See TracChangeset
for help on using the changeset viewer.
