Changeset 4286 for trunk/psLib/src/astro/psCoord.c
- Timestamp:
- Jun 16, 2005, 12:00:04 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astro/psCoord.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.c
r4225 r4286 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.7 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06-1 3 20:16:22$12 * @version $Revision: 1.72 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-16 22:00:03 $ 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); 244 246 245 247 if (out == NULL) { 248 printf("psPlaneTransformApply(): out is NULL\n"); 246 249 out = (psPlane* ) psAlloc(sizeof(psPlane)); 247 250 } 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 */ 248 263 out->x = psDPolynomial2DEval( 249 264 transform->x, … … 251 266 coords->y 252 267 ); 268 253 269 out->y = psDPolynomial2DEval( 254 270 transform->y, … … 257 273 ); 258 274 275 printf("psPlaneTransformApply(END)\n"); 259 276 return (out); 260 277 }
Note:
See TracChangeset
for help on using the changeset viewer.
