Changeset 4920 for trunk/psLib/src/mathtypes
- Timestamp:
- Aug 30, 2005, 4:07:12 PM (21 years ago)
- Location:
- trunk/psLib/src/mathtypes
- Files:
-
- 4 edited
-
psImage.c (modified) (2 diffs)
-
psImage.h (modified) (2 diffs)
-
psScalar.c (modified) (2 diffs)
-
psScalar.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/mathtypes/psImage.c
r4898 r4920 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.7 8$ $Name: not supported by cvs2svn $12 * @date $Date: 2005-08-3 0 01:14:13$11 * @version $Revision: 1.79 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2005-08-31 02:07:11 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 199 199 200 200 // define a square region centered on the given coordinate 201 psRegion psRegionForSquare( floatx,202 floaty,203 floatradius)201 psRegion psRegionForSquare(double x, 202 double y, 203 double radius) 204 204 { 205 205 psRegion region; -
trunk/psLib/src/mathtypes/psImage.h
r4898 r4920 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.6 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-08-3 0 01:14:13$13 * @version $Revision: 1.65 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-08-31 02:07:11 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 179 179 */ 180 180 psRegion psRegionForSquare( 181 floatx, ///< x coordinate at square-center182 floaty, ///< y coordinate at square-center183 floatradius ///< radius of square181 double x, ///< x coordinate at square-center 182 double y, ///< y coordinate at square-center 183 double radius ///< radius of square 184 184 ); 185 185 -
trunk/psLib/src/mathtypes/psScalar.c
r4898 r4920 8 8 * @author Ross Harman, MHPCC 9 9 * 10 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-08-3 0 01:14:13$10 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-08-31 02:07:11 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 27 27 } 28 28 29 psScalar* psScalarAlloc(complex value, psElemType type)29 psScalar* psScalarAlloc(complex double value, psElemType type) 30 30 { 31 31 psScalar* scalar = NULL; -
trunk/psLib/src/mathtypes/psScalar.h
r4898 r4920 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-08-3 0 01:14:13$13 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-08-31 02:07:11 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 66 66 */ 67 67 psScalar* psScalarAlloc( 68 complex value, ///< Data to be put into psScalar.68 complex double value, ///< Data to be put into psScalar. 69 69 psElemType type ///< Type of data to be held by psScalar. 70 70 );
Note:
See TracChangeset
for help on using the changeset viewer.
