Changeset 1476
- Timestamp:
- Aug 11, 2004, 10:08:05 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 5 edited
-
astronomy/psAstrometry.h (modified) (2 diffs)
-
astronomy/psCoord.c (modified) (3 diffs)
-
dataManip/psFunctions.c (modified) (2 diffs)
-
math/psPolynomial.c (modified) (2 diffs)
-
math/psSpline.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psAstrometry.h
r1475 r1476 1 2 1 /** @file psAstrometry.h 3 2 * … … 9 8 * @author George Gusciora, MHPCC 10 9 * 11 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-08-11 20:0 7:44$10 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 20:08:05 $ 13 12 * 14 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/src/astronomy/psCoord.c
r1463 r1476 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08-1 0 23:59:41$13 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-11 20:07:44 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 39 39 } 40 40 out->x = transform->x->coeff[0][0] + 41 (transform->x->coeff[1][0] * coords->x) + (transform->x->coeff[0][1] * coords->y); 41 (transform->x->coeff[1][0] * coords->x) + 42 (transform->x->coeff[0][1] * coords->y); 42 43 43 44 out->y = transform->y->coeff[0][0] + 44 (transform->y->coeff[1][0] * coords->x) + (transform->y->coeff[0][1] * coords->y); 45 (transform->y->coeff[1][0] * coords->x) + 46 (transform->y->coeff[0][1] * coords->y); 45 47 46 48 return (out); … … 48 50 49 51 // This transformation takes into account parameters beyond an objects 50 // spatial coordinates: term3 and term4 .52 // spatial coordinates: term3 and term4 (magnitude and color). 51 53 psPlane* psPlaneDistortApply(psPlane* out, 52 54 const psPlaneDistort* transform, -
trunk/psLib/src/dataManip/psFunctions.c
r1440 r1476 8 8 * polynomials. It also contains a Gaussian functions. 9 9 * 10 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-08- 09 23:34:57$10 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 20:07:45 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 352 352 /***************************************************************************** 353 353 Polynomial coefficients will be accessed in [w][x][y][z] fashion. 354 355 XXX: Determine, from IfA, whether ot not the "mask[]" terms should be used 356 in polynomial evaluation. If so, then all of the following polynomial 357 evaluation functions must be modified to do so. 358 359 XXX: Should the "coeffErr[]" should be used as well? 354 360 *****************************************************************************/ 355 361 float psPolynomial1DEval(float x, const psPolynomial1D* myPoly) -
trunk/psLib/src/math/psPolynomial.c
r1440 r1476 8 8 * polynomials. It also contains a Gaussian functions. 9 9 * 10 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-08- 09 23:34:57$10 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 20:07:45 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 352 352 /***************************************************************************** 353 353 Polynomial coefficients will be accessed in [w][x][y][z] fashion. 354 355 XXX: Determine, from IfA, whether ot not the "mask[]" terms should be used 356 in polynomial evaluation. If so, then all of the following polynomial 357 evaluation functions must be modified to do so. 358 359 XXX: Should the "coeffErr[]" should be used as well? 354 360 *****************************************************************************/ 355 361 float psPolynomial1DEval(float x, const psPolynomial1D* myPoly) -
trunk/psLib/src/math/psSpline.c
r1440 r1476 8 8 * polynomials. It also contains a Gaussian functions. 9 9 * 10 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-08- 09 23:34:57$10 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 20:07:45 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 352 352 /***************************************************************************** 353 353 Polynomial coefficients will be accessed in [w][x][y][z] fashion. 354 355 XXX: Determine, from IfA, whether ot not the "mask[]" terms should be used 356 in polynomial evaluation. If so, then all of the following polynomial 357 evaluation functions must be modified to do so. 358 359 XXX: Should the "coeffErr[]" should be used as well? 354 360 *****************************************************************************/ 355 361 float psPolynomial1DEval(float x, const psPolynomial1D* myPoly)
Note:
See TracChangeset
for help on using the changeset viewer.
