IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6371


Ignore:
Timestamp:
Feb 7, 2006, 5:26:01 PM (20 years ago)
Author:
jhoblitt
Message:

reorder psPrecessMethod to match the implementation in pslib
reorder psPolynomialXDAlloc() functions params to have type first

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/ChangeLogSDRS.tex

    r6366 r6371  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.192 2006-02-08 02:28:20 jhoblitt Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.193 2006-02-08 03:26:01 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    847847\item add \code{*out} param to \code{psFitsReadHeaderSet()}
    848848\item sync \code{psElemType}, \code{psDataType}, & \code{psFitsType} with the implementation in pslib
    849 \end{itemize}
     849\item reorder \code{psPrecessMethod} to match the implementation in pslib
     850\item reorder \code{psPolynomialXDAlloc()} functions params to have \code{type} first
     851\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r6366 r6371  
    1 %%% $Id: psLibSDRS.tex,v 1.381 2006-02-08 02:28:20 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.382 2006-02-08 03:26:01 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    46114611The constructors are:
    46124612\begin{prototype}
    4613 psPolynomial1D *psPolynomial1DAlloc(unsigned int nX,
    4614                                     psPolynomialType type);
    4615 psPolynomial2D *psPolynomial2DAlloc(unsigned int nX, unsigned int nY,
    4616                                     psPolynomialType type);
    4617 psPolynomial3D *psPolynomial3DAlloc(unsigned int nX, unsigned int nY,
    4618                                     unsigned int nZ, psPolynomialType type);
    4619 psPolynomial4D *psPolynomial4DAlloc(unsigned int nX, unsigned int nY,
    4620                                     unsigned int nZ, unsigned int nT,
    4621                                     psPolynomialType type);
     4613psPolynomial1D *psPolynomial1DAlloc(psPolynomialType type, unsigned int nX);
     4614psPolynomial2D *psPolynomial2DAlloc psPolynomialType type, unsigned int nX,
     4615                                    unsigned int nY);
     4616psPolynomial3D *psPolynomial3DAlloc(psPolynomialType type, unsigned int nX,
     4617                                    unsigned int nY, unsigned int nZ);
     4618psPolynomial4D *psPolynomial4DAlloc(psPolynomialType type, unsigned int nX,
     4619                                    unsigned int nY, unsigned int nZ,
     4620                                    unsigned int nT);
    46224621\end{prototype}
    46234622where \code{nX}, \code{nY}, etc specify the polynomial order in the
     
    69946993typedef enum {
    69956994  PS_PRECESS_ROUGH,
    6996   PS_PRECESS_IAU2000A,
    69976995  PS_PRECESS_COMPLETE_A,
    6998   PS_PRECESS_COMPLETE_B
     6996  PS_PRECESS_COMPLETE_B,
     6997  PS_PRECESS_IAU2000A
    69996998} psPrecessMethod;
    70006999\end{datatype}
Note: See TracChangeset for help on using the changeset viewer.