IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 27, 2005, 10:38:12 AM (21 years ago)
Author:
drobbin
Message:

made required changes based on apidelta-report-cycle6

File:
1 edited

Legend:

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

    r4392 r4401  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.77 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-06-25 02:02:04 $
     12*  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-06-27 20:38:11 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    288288 *****************************************************************************/
    289289psPlane* psPlaneDistortApply(psPlane* out,
    290                              const psPlaneDistort* transform,
     290                             const psPlaneDistort* distort,
    291291                             const psPlane* coords,
    292292                             float mag,
    293293                             float color)
    294294{
    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);
    298298    PS_ASSERT_PTR_NON_NULL(coords, NULL);
    299299
     
    302302    }
    303303    out->x = psDPolynomial4DEval(
    304                  transform->x,
     304                 distort->x,
    305305                 coords->x,
    306306                 coords->y,
     
    309309             );
    310310    out->y = psDPolynomial4DEval(
    311                  transform->y,
     311                 distort->y,
    312312                 coords->x,
    313313                 coords->y,
Note: See TracChangeset for help on using the changeset viewer.