IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4401 for trunk/psLib/src/astro


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

made required changes based on apidelta-report-cycle6

Location:
trunk/psLib/src/astro
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/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,
  • trunk/psLib/src/astro/psCoord.h

    r4330 r4401  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-06-21 03:01:37 $
     12*  @version $Revision: 1.37 $ $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
     
    221221psPlane* psPlaneDistortApply(
    222222    psPlane* out,                      ///< a psPlane to recycle.  If NULL, a new one is generated.
    223     const psPlaneDistort* transform,   ///< the transform to apply
     223    const psPlaneDistort* distort,     ///< the transform to apply
    224224    const psPlane* coords,             ///< the coordinate to apply the transform above.
    225225    float mag,                         ///< third term -- maybe magnitude
Note: See TracChangeset for help on using the changeset viewer.