IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 22, 2005, 11:52:49 AM (21 years ago)
Author:
desonia
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psVector.h

    r3407 r3476  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-03-11 20:38:56 $
     13 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-03-22 21:52:49 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3737
    3838    union {
    39         psBool B;               ///< Boolean data.
    4039        psU8* U8;               ///< Unsigned 8-bit integer data.
    4140        psU16* U16;             ///< Unsigned 16-bit integer data.
     
    5049        psC32* C32;             ///< Single-precision complex data.
    5150        psC64* C64;             ///< Double-precision complex data.
    52         psPtr V;                ///< Pointer to data.
    5351    } data;                     ///< Union for data types.
    5452}
     
    153151);
    154152
     153/** Returns an element in the vector as a psF64 value
     154 *
     155 *  @return psF64          the value at specified position, or NAN if position is invalid.
     156 */
     157psF64 p_psVectorGetElementF64(
     158    psVector* vector,                  ///< vector to retrieve element
     159    int position                       ///< the vector position to get
     160);
     161
     162
    155163/// @}
    156164
Note: See TracChangeset for help on using the changeset viewer.