IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 30, 2005, 4:07:12 PM (21 years ago)
Author:
drobbin
Message:

Updated code w.r.t the latest api-delta report

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

Legend:

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

    r4898 r4920  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-08-30 01:14:13 $
     11 *  @version $Revision: 1.79 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-08-31 02:07:11 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    199199
    200200// define a square region centered on the given coordinate
    201 psRegion psRegionForSquare(float x,
    202                            float y,
    203                            float radius)
     201psRegion psRegionForSquare(double x,
     202                           double y,
     203                           double radius)
    204204{
    205205    psRegion region;
  • trunk/psLib/src/mathtypes/psImage.h

    r4898 r4920  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.64 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-08-30 01:14:13 $
     13 *  @version $Revision: 1.65 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-08-31 02:07:11 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    179179 */
    180180psRegion psRegionForSquare(
    181     float x,                           ///< x coordinate at square-center
    182     float y,                           ///< y coordinate at square-center
    183     float radius                       ///< radius of square
     181    double x,                           ///< x coordinate at square-center
     182    double y,                           ///< y coordinate at square-center
     183    double radius                       ///< radius of square
    184184);
    185185
  • trunk/psLib/src/mathtypes/psScalar.c

    r4898 r4920  
    88 *  @author Ross Harman, MHPCC
    99 *
    10  *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-08-30 01:14:13 $
     10 *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-08-31 02:07:11 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2727}
    2828
    29 psScalar* psScalarAlloc(complex value, psElemType type)
     29psScalar* psScalarAlloc(complex double value, psElemType type)
    3030{
    3131    psScalar* scalar = NULL;
  • trunk/psLib/src/mathtypes/psScalar.h

    r4898 r4920  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-08-30 01:14:13 $
     13 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-08-31 02:07:11 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6666 */
    6767psScalar* psScalarAlloc(
    68     complex value,                     ///< Data to be put into psScalar.
     68    complex double value,                     ///< Data to be put into psScalar.
    6969    psElemType type                    ///< Type of data to be held by psScalar.
    7070);
Note: See TracChangeset for help on using the changeset viewer.