IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5790


Ignore:
Timestamp:
Dec 14, 2005, 2:46:00 PM (20 years ago)
Author:
jhoblitt
Message:

change psPolynomial?DAlloc() to have type as the last parameter

Location:
branches/SDRS-18-FIXES/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SDRS-18-FIXES/doc/pslib/ChangeLogSDRS.tex

    r5706 r5790  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.183 2005-12-06 18:54:01 eugene Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.183.2.1 2005-12-15 00:46:00 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    803803\end{itemize}
    804804
    805 \subsection{Changes from Revision 17 (18 Oct 2005) to Revistion 18 (06 Dec 2005)}
     805\subsection{Changes from Revision 17 (18 Oct 2005) to Revision 18 (06 Dec 2005)}
    806806
    807807\begin{itemize}
     
    833833\item clarified units for \code{psProjectionAlloc}
    834834\end{itemize}
     835
     836\subsection{Changes from Revistion 18 (06 Dec 2005) to Revision 19 ()}
     837\begin{itemize}
     838\item change \code{psPolynomial?DAlloc()} to have \code{type} as the last
     839  parameter.
     840\end{itemize}
  • branches/SDRS-18-FIXES/doc/pslib/psLibSDRS.tex

    r5707 r5790  
    1 %%% $Id: psLibSDRS.tex,v 1.362 2005-12-06 18:56:01 eugene Exp $
     1%%% $Id: psLibSDRS.tex,v 1.362.2.1 2005-12-15 00:46:00 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    45654565The constructors are:
    45664566\begin{prototype}
    4567 psPolynomial1D *psPolynomial1DAlloc(psPolynomialType type,
    4568                                     unsigned int nX);
    4569 psPolynomial2D *psPolynomial2DAlloc(psPolynomialType type,
    4570                                     unsigned int nX, unsigned int nY);
    4571 psPolynomial3D *psPolynomial3DAlloc(psPolynomialType type,
    4572                                     unsigned int nX, unsigned int nY, unsigned int nZ);
    4573 psPolynomial4D *psPolynomial4DAlloc(psPolynomialType type,
    4574                                     unsigned int nX, unsigned int nY, unsigned int nZ, unsigned int nT);
     4567psPolynomial1D *psPolynomial1DAlloc(unsigned int nX,
     4568                                    psPolynomialType type);
     4569psPolynomial2D *psPolynomial2DAlloc(unsigned int nX, unsigned int nY,
     4570                                    psPolynomialType type);
     4571psPolynomial3D *psPolynomial3DAlloc(unsigned int nX, unsigned int nY,
     4572                                    unsigned int nZ, psPolynomialType type);
     4573psPolynomial4D *psPolynomial4DAlloc(unsigned int nX, unsigned int nY,
     4574                                    unsigned int nZ, unsigned int nT,
     4575                                    psPolynomialType type);
    45754576\end{prototype}
    45764577where \code{nX}, \code{nY}, etc specify the polynomial order in the
Note: See TracChangeset for help on using the changeset viewer.