Changeset 3476 for trunk/psLib/src/collections/psVector.h
- Timestamp:
- Mar 22, 2005, 11:52:49 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psVector.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psVector.h
r3407 r3476 11 11 * @author Ross Harman, MHPCC 12 12 * 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 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 37 37 38 38 union { 39 psBool B; ///< Boolean data.40 39 psU8* U8; ///< Unsigned 8-bit integer data. 41 40 psU16* U16; ///< Unsigned 16-bit integer data. … … 50 49 psC32* C32; ///< Single-precision complex data. 51 50 psC64* C64; ///< Double-precision complex data. 52 psPtr V; ///< Pointer to data.53 51 } data; ///< Union for data types. 54 52 } … … 153 151 ); 154 152 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 */ 157 psF64 p_psVectorGetElementF64( 158 psVector* vector, ///< vector to retrieve element 159 int position ///< the vector position to get 160 ); 161 162 155 163 /// @} 156 164
Note:
See TracChangeset
for help on using the changeset viewer.
