IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 12:32:09 PM (22 years ago)
Author:
gusciora
Message:

Added the plane transform alloc functions.

File:
1 edited

Legend:

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

    r2199 r2200  
    1010*  @author George Gusciora, MHPCC
    1111*
    12 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2004-10-26 21:57:42 $
     12*  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2004-10-26 22:32:09 $
    1414*
    1515*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    167167} psSphereOffsetUnit;
    168168
     169/** Allocates a psPlaneTransform transform.
     170 *
     171 *  @return psPlaneTransform*     resulting plane transform
     172 */
     173
     174psPlaneTransform* psPlaneTransformAlloc(
     175    int n1,  ///< The order of the x term in the transform.
     176    int n2   ///< The order of the y term in the transform.
     177);
     178
    169179/** Applies the psPlaneTransform transform to a specified coordinate
    170180 *
     
    176186    const psPlane* coords              ///< the coordinate to apply the transform above.
    177187);
     188
     189/** Allocates a psPlaneDistort transform.
     190 *
     191 *  @return psPlaneDistort*     resulting plane distort transform
     192 */
     193
     194psPlaneDistort* psPlaneDistortAlloc(
     195    int n1,  ///< The order of the w term in the transform.
     196    int n2,  ///< The order of the x term in the transform.
     197    int n3,  ///< The order of the y term in the transform.
     198    int n4   ///< The order of the z term in the transform.
     199);
     200
    178201
    179202/** Applies the psPlaneDistort transform to a specified coordinate
Note: See TracChangeset for help on using the changeset viewer.