IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1476


Ignore:
Timestamp:
Aug 11, 2004, 10:08:05 AM (22 years ago)
Author:
gusciora
Message:

...

Location:
trunk/psLib/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psAstrometry.h

    r1475 r1476  
    1 
    21/** @file  psAstrometry.h
    32*
     
    98*  @author George Gusciora, MHPCC
    109*
    11 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-08-11 20:07:44 $
     10*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-08-11 20:08:05 $
    1312*
    1413*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/astronomy/psCoord.c

    r1463 r1476  
    1111*  @author George Gusciora, MHPCC
    1212*
    13 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2004-08-10 23:59:41 $
     13*  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2004-08-11 20:07:44 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3939    }
    4040    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);
    4243
    4344    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);
    4547
    4648    return (out);
     
    4850
    4951// This transformation takes into account parameters beyond an objects
    50 // spatial coordinates: term3 and term4.
     52// spatial coordinates: term3 and term4 (magnitude and color).
    5153psPlane* psPlaneDistortApply(psPlane* out,
    5254                             const psPlaneDistort* transform,
  • trunk/psLib/src/dataManip/psFunctions.c

    r1440 r1476  
    88 *  polynomials.  It also contains a Gaussian functions.
    99 *
    10  *  @version $Revision: 1.22 $ $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 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    352352/*****************************************************************************
    353353    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?
    354360 *****************************************************************************/
    355361float psPolynomial1DEval(float x, const psPolynomial1D* myPoly)
  • trunk/psLib/src/math/psPolynomial.c

    r1440 r1476  
    88 *  polynomials.  It also contains a Gaussian functions.
    99 *
    10  *  @version $Revision: 1.22 $ $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 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    352352/*****************************************************************************
    353353    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?
    354360 *****************************************************************************/
    355361float psPolynomial1DEval(float x, const psPolynomial1D* myPoly)
  • trunk/psLib/src/math/psSpline.c

    r1440 r1476  
    88 *  polynomials.  It also contains a Gaussian functions.
    99 *
    10  *  @version $Revision: 1.22 $ $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 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    352352/*****************************************************************************
    353353    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?
    354360 *****************************************************************************/
    355361float psPolynomial1DEval(float x, const psPolynomial1D* myPoly)
Note: See TracChangeset for help on using the changeset viewer.