IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10177 for trunk/psLib


Ignore:
Timestamp:
Nov 24, 2006, 10:51:43 AM (20 years ago)
Author:
magnier
Message:

added const to p_psVectorGetElementF64 and psVectorPrint

Location:
trunk/psLib/src/mathtypes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/mathtypes/psVector.c

    r9978 r10177  
    99*  @author Robert DeSonia, MHPCC
    1010*
    11 *  @version $Revision: 1.88 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2006-11-15 00:06:31 $
     11*  @version $Revision: 1.89 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2006-11-24 20:51:43 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    595595}
    596596
    597 psF64 p_psVectorGetElementF64(psVector* vector,
     597psF64 p_psVectorGetElementF64(const psVector* vector,
    598598                              int position)
    599599{
     
    642642
    643643bool p_psVectorPrint (int fd,
    644                       psVector *a,
     644                      const psVector *a,
    645645                      char *name)
    646646{
  • trunk/psLib/src/mathtypes/psVector.h

    r9730 r10177  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-10-24 22:52:56 $
     13 *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-11-24 20:51:43 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    197197 */
    198198psF64 p_psVectorGetElementF64(
    199     psVector* vector,                  ///< vector to retrieve element
     199    const psVector* vector,                  ///< vector to retrieve element
    200200    int position                       ///< the vector position to get
    201201);
     
    207207bool p_psVectorPrint (
    208208    int fd,                            ///< output file descriptor
    209     psVector *a,                       ///< vector to print
     209    const psVector *a,                       ///< vector to print
    210210    char *name                         ///< name of vector (for title)
    211211);
Note: See TracChangeset for help on using the changeset viewer.