Changeset 4401 for trunk/psLib/src/astronomy/psCoord.c
- Timestamp:
- Jun 27, 2005, 10:38:12 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astronomy/psCoord.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psCoord.c
r4392 r4401 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.7 7$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06-2 5 02:02:04$12 * @version $Revision: 1.78 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-27 20:38:11 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 288 288 *****************************************************************************/ 289 289 psPlane* psPlaneDistortApply(psPlane* out, 290 const psPlaneDistort* transform,290 const psPlaneDistort* distort, 291 291 const psPlane* coords, 292 292 float mag, 293 293 float color) 294 294 { 295 PS_ASSERT_PTR_NON_NULL( transform, NULL);296 PS_ASSERT_PTR_NON_NULL( transform->x, NULL);297 PS_ASSERT_PTR_NON_NULL( transform->y, NULL);295 PS_ASSERT_PTR_NON_NULL(distort, NULL); 296 PS_ASSERT_PTR_NON_NULL(distort->x, NULL); 297 PS_ASSERT_PTR_NON_NULL(distort->y, NULL); 298 298 PS_ASSERT_PTR_NON_NULL(coords, NULL); 299 299 … … 302 302 } 303 303 out->x = psDPolynomial4DEval( 304 transform->x,304 distort->x, 305 305 coords->x, 306 306 coords->y, … … 309 309 ); 310 310 out->y = psDPolynomial4DEval( 311 transform->y,311 distort->y, 312 312 coords->x, 313 313 coords->y,
Note:
See TracChangeset
for help on using the changeset viewer.
