IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2005, 5:01:37 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

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

    r4321 r4330  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.75 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-06-20 22:42:29 $
     12*  @version $Revision: 1.76 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-06-21 03:01:37 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    221221}
    222222
    223 psPlaneTransform* psPlaneTransformAlloc(psS32 n1, psS32 n2)
     223psPlaneTransform* psPlaneTransformAlloc(int n1, int n2)
    224224{
    225225    PS_ASSERT_INT_NONNEGATIVE(n1, NULL);
     
    290290                             const psPlaneDistort* transform,
    291291                             const psPlane* coords,
    292                              float color,
    293                              float magnitude)
     292                             float mag,
     293                             float color)
    294294{
    295295    PS_ASSERT_PTR_NON_NULL(transform, NULL);
     
    305305                 coords->x,
    306306                 coords->y,
    307                  color,
    308                  magnitude
     307                 mag,
     308                 color
    309309             );
    310310    out->y = psDPolynomial4DEval(
     
    312312                 coords->x,
    313313                 coords->y,
    314                  color,
    315                  magnitude
     314                 mag,
     315                 color
    316316             );
    317317    return (out);
     
    481481
    482482psProjection* psProjectionAlloc(
    483     psF64 R,
    484     psF64 D,
    485     psF64 Xs,
    486     psF64 Ys,
     483    double R,
     484    double D,
     485    double Xs,
     486    double Ys,
    487487    psProjectionType type)
    488488{
Note: See TracChangeset for help on using the changeset viewer.