Changeset 4288
- Timestamp:
- Jun 16, 2005, 12:32:57 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 5 edited
-
astro/psCoord.c (modified) (4 diffs)
-
astronomy/psCoord.c (modified) (4 diffs)
-
dataManip/psFunctions.c (modified) (3 diffs)
-
math/psPolynomial.c (modified) (3 diffs)
-
math/psSpline.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.c
r4286 r4288 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.7 2$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06-16 22: 00:03$12 * @version $Revision: 1.73 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-16 22:32:57 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 242 242 PS_ASSERT_PTR_NON_NULL(transform->y, NULL); 243 243 PS_ASSERT_PTR_NON_NULL(coords, NULL); 244 printf("psPlaneTransformApply(): (%f, %f) x:(%d, %d)\n",245 coords->x, coords->y, transform->x->nX, transform->x->nY);246 244 247 245 if (out == NULL) { … … 249 247 out = (psPlane* ) psAlloc(sizeof(psPlane)); 250 248 } 251 /* 252 out->x = psDPolynomial2DEval( 253 transform->x, 254 coords->x, 255 coords->y 256 ); 257 out->y = psDPolynomial2DEval( 258 transform->y, 259 coords->x, 260 coords->y 261 ); 262 */ 249 263 250 out->x = psDPolynomial2DEval( 264 251 transform->x, … … 273 260 ); 274 261 275 printf("psPlaneTransformApply(END)\n");276 262 return (out); 277 263 } -
trunk/psLib/src/astronomy/psCoord.c
r4286 r4288 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.7 2$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06-16 22: 00:03$12 * @version $Revision: 1.73 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-16 22:32:57 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 242 242 PS_ASSERT_PTR_NON_NULL(transform->y, NULL); 243 243 PS_ASSERT_PTR_NON_NULL(coords, NULL); 244 printf("psPlaneTransformApply(): (%f, %f) x:(%d, %d)\n",245 coords->x, coords->y, transform->x->nX, transform->x->nY);246 244 247 245 if (out == NULL) { … … 249 247 out = (psPlane* ) psAlloc(sizeof(psPlane)); 250 248 } 251 /* 252 out->x = psDPolynomial2DEval( 253 transform->x, 254 coords->x, 255 coords->y 256 ); 257 out->y = psDPolynomial2DEval( 258 transform->y, 259 coords->x, 260 coords->y 261 ); 262 */ 249 263 250 out->x = psDPolynomial2DEval( 264 251 transform->x, … … 273 260 ); 274 261 275 printf("psPlaneTransformApply(END)\n");276 262 return (out); 277 263 } -
trunk/psLib/src/dataManip/psFunctions.c
r4286 r4288 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.10 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-06-16 22: 00:03$9 * @version $Revision: 1.108 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-06-16 22:32:07 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 680 680 psF64 xSum = 1.0; 681 681 psF64 ySum = 1.0; 682 printf("dOrdPolynomial2DEval(%f, %f) (%d, %d)\n", x, y, myPoly->nX, myPoly->nY);683 682 684 683 for (loop_x = 0; loop_x < myPoly->nX; loop_x++) { … … 692 691 xSum *= x; 693 692 } 694 printf("dOrdPolynomial2DEval(END)\n");695 693 696 694 return(polySum); -
trunk/psLib/src/math/psPolynomial.c
r4286 r4288 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.10 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-06-16 22: 00:03$9 * @version $Revision: 1.108 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-06-16 22:32:07 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 680 680 psF64 xSum = 1.0; 681 681 psF64 ySum = 1.0; 682 printf("dOrdPolynomial2DEval(%f, %f) (%d, %d)\n", x, y, myPoly->nX, myPoly->nY);683 682 684 683 for (loop_x = 0; loop_x < myPoly->nX; loop_x++) { … … 692 691 xSum *= x; 693 692 } 694 printf("dOrdPolynomial2DEval(END)\n");695 693 696 694 return(polySum); -
trunk/psLib/src/math/psSpline.c
r4286 r4288 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.10 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-06-16 22: 00:03$9 * @version $Revision: 1.108 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-06-16 22:32:07 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 680 680 psF64 xSum = 1.0; 681 681 psF64 ySum = 1.0; 682 printf("dOrdPolynomial2DEval(%f, %f) (%d, %d)\n", x, y, myPoly->nX, myPoly->nY);683 682 684 683 for (loop_x = 0; loop_x < myPoly->nX; loop_x++) { … … 692 691 xSum *= x; 693 692 } 694 printf("dOrdPolynomial2DEval(END)\n");695 693 696 694 return(polySum);
Note:
See TracChangeset
for help on using the changeset viewer.
