IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 24, 2004, 4:06:12 PM (22 years ago)
Author:
desonia
Message:

added psImageRadialCut. Untested, but compiles.

File:
1 edited

Legend:

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

    r1478 r1897  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-11 20:17:35 $
     14 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-09-25 02:06:12 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    105105);
    106106
     107/** Copy a vector, converting types.
     108 *
     109 *  Performs a deep copy of the elements of one psVector to a new psVector,
     110 *  converting numeric types to a specified type.
     111 *
     112 * @return psVector*       Pointer to resulting psVector.
     113 *
     114 */
     115psVector* psVectorCopy(
     116    psVector* out,                     ///< if non-NULL, a psVector to recycle
     117    const psVector* in,                ///< the vector to copy.
     118    psElemType type                    ///< the data type of the resulting psVector
     119);
     120
    107121/** Sort an array of floats.
    108122 *
Note: See TracChangeset for help on using the changeset viewer.