IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 16, 2005, 12:00:04 PM (21 years ago)
Author:
gusciora
Message:

CHeck in, check in often. -- RDD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psCoord.c

    r4225 r4286  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.71 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-06-13 20:16:22 $
     12*  @version $Revision: 1.72 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-06-16 22:00:03 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    242242    PS_ASSERT_PTR_NON_NULL(transform->y, NULL);
    243243    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);
    244246
    245247    if (out == NULL) {
     248        printf("psPlaneTransformApply(): out is NULL\n");
    246249        out = (psPlane* ) psAlloc(sizeof(psPlane));
    247250    }
     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    */
    248263    out->x = psDPolynomial2DEval(
    249264                 transform->x,
     
    251266                 coords->y
    252267             );
     268
    253269    out->y = psDPolynomial2DEval(
    254270                 transform->y,
     
    257273             );
    258274
     275    printf("psPlaneTransformApply(END)\n");
    259276    return (out);
    260277}
Note: See TracChangeset for help on using the changeset viewer.