Changeset 671 for trunk/archive/pslib/include/psSort.h
- Timestamp:
- May 13, 2004, 1:16:19 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psSort.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psSort.h
r519 r671 13 13 14 14 /** Sort an array. Inputs not restrict-ed to allow sort in place */ 15 ps FloatArray*16 psSort(ps FloatArray *out,///< Sorted array to return. May be NULL17 const ps FloatArray *restrict myArray///< Array to sort18 );15 psVector * 16 psSort(psVector *out, ///< Sorted array to return. May be NULL 17 const psVector *restrict in) ///< Array to sort 18 ; 19 19 20 20 /** Sort an array, along with some other stuff. Returns an index array */ 21 ps IntArray*22 psSortIndex(ps IntArray*restrict out, ///< Output index array (may be NULL)23 const ps FloatArray *restrict myArray///< Array to sort24 );21 psVector * 22 psSortIndex(psVector *restrict out, ///< Output index array (may be NULL) 23 const psVector *restrict in) ///< Array to sort 24 ; 25 25 26 26 /* \} */ // End of MathGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
