IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 298


Ignore:
Timestamp:
Mar 23, 2004, 5:39:57 PM (22 years ago)
Author:
Paul Price
Message:

Fixed brackets.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psFunctions.h

    r285 r298  
    5656
    5757/** Constructor */
    58 psPolynomial1D *psPolynomial1DAlloc(int n) //!< Number of terms
    59                                     ;
    60 /** Constructor */
    61 psPolynomial2D *psPolynomial2DAlloc(int nX, int nY) //!< Number of terms in x and y
    62                                     ;
    63 /** Constructor */
    64 psPolynomial3D *psPolynomial3DAlloc(int nX, int nY, int nZ) //!< Number of terms in x, y and z
    65                                     ;
    66 /** Constructor */
    67 psPolynomial4D *psPolynomial4DAlloc(int nW, int nX, int nY, int nZ) //!< Number of terms in w, x, y and z
    68                                     ;
    69 
    70 /** Destructor */
    71 void psPolynomial1DFree(psPolynomial1D *restrict myPoly) //!< Polynomial to destroy
    72 ;
     58psPolynomial1D *psPolynomial1DAlloc(int n //!< Number of terms
     59                                    );
     60/** Constructor */
     61psPolynomial2D *psPolynomial2DAlloc(int nX, int nY //!< Number of terms in x and y
     62                                    );
     63/** Constructor */
     64psPolynomial3D *psPolynomial3DAlloc(int nX, int nY, int nZ //!< Number of terms in x, y and z
     65                                    );
     66/** Constructor */
     67psPolynomial4D *psPolynomial4DAlloc(int nW, int nX, int nY, int nZ //!< Number of terms in w, x, y and z
     68                                    );
     69
     70/** Destructor */
     71void psPolynomial1DFree(psPolynomial1D *restrict myPoly //!< Polynomial to destroy
     72    );
    7373     
    7474/** Destructor */
    75 void psPolynomial2DFree(psPolynomial2D *restrict myPoly) //!< Polynomial to destroy
    76                         ;
    77 /** Destructor */
    78 void psPolynomial3DFree(psPolynomial3D *restrict myPoly) //!< Polynomial to destroy
    79                         ;
    80 /** Destructor */
    81 void psPolynomial4DFree(psPolynomial4D *restrict myPoly) //!< Polynomial to destroy
    82                         ;
     75void psPolynomial2DFree(psPolynomial2D *restrict myPoly //!< Polynomial to destroy
     76    );
     77/** Destructor */
     78void psPolynomial3DFree(psPolynomial3D *restrict myPoly //!< Polynomial to destroy
     79    );
     80/** Destructor */
     81void psPolynomial4DFree(psPolynomial4D *restrict myPoly //!< Polynomial to destroy
     82    );
    8383
    8484/** Evaluate 1D polynomial */
Note: See TracChangeset for help on using the changeset viewer.