Changeset 11248 for trunk/psLib/src/mathtypes
- Timestamp:
- Jan 23, 2007, 12:47:23 PM (20 years ago)
- Location:
- trunk/psLib/src/mathtypes
- Files:
-
- 3 edited
-
psImage.h (modified) (3 diffs)
-
psScalar.h (modified) (3 diffs)
-
psVector.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/mathtypes/psImage.h
r9927 r11248 1 /** @file psImage.h 2 * 3 * @brief Contains basic image definitions and operations 4 * 5 * This file defines the basic type for an image struct and functions useful 6 * in manupulating images. 7 * 8 * @ingroup Image 9 * 10 * @author Robert DeSonia, MHPCC 11 * @author Ross Harman, MHPCC 12 * 13 * @version $Revision: 1.83 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-11-09 20:20:27 $ 15 * 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 17 */ 1 /* @file psImage.h 2 * @brief Basic image definitions and operations 3 * 4 * This file defines the basic type for an image struct and functions useful 5 * in manupulating images. 6 * 7 * @author Robert DeSonia, MHPCC 8 * @author Ross Harman, MHPCC 9 * 10 * @version $Revision: 1.84 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2007-01-23 22:47:23 $ 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 13 */ 14 18 15 #ifndef PS_IMAGE_H 19 16 #define PS_IMAGE_H 17 18 /// @addtogroup MathOps Mathematical Operations 19 /// @{ 20 20 21 21 #include <complex.h> … … 24 24 #include "psArray.h" 25 25 #include "psConstants.h" 26 27 /// @addtogroup Image28 /// @{29 26 30 27 /** enumeration of options in interpolation … … 311 308 312 309 /// @} 313 314 310 #endif // PS_IMAGE_H -
trunk/psLib/src/mathtypes/psScalar.h
r6227 r11248 1 2 /** @file psScalar.h 1 /* @file psScalar.h 2 * @brief Basic scalar definitions and operations 3 3 * 4 * @brief Contains basic scalar definitions and operations 4 * This file defines the basic type for a scalar struct and functions useful 5 * in manupulating scalars. 5 6 * 6 * This file defines the basic type for a scalar struct and functions useful 7 * in manupulating scalars. 7 * @author Ross Harman, MHPCC 8 8 * 9 * @ingroup Scalar 10 * 11 * @author Ross Harman, MHPCC 12 * 13 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-01-28 01:12:14 $ 15 * 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 9 * @version $Revision: 1.21 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2007-01-23 22:47:23 $ 11 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 17 12 */ 18 13 … … 20 15 #define PS_SCALAR_H 21 16 17 /// @addtogroup MathOps Mathematical Operations 18 /// @{ 19 22 20 #include "psType.h" 23 24 /// @addtogroup Scalar25 /// @{26 21 27 22 /** Basic scalar data structure. … … 93 88 94 89 /// @} 95 96 90 #endif // #ifndef PS_SCALAR_H -
trunk/psLib/src/mathtypes/psVector.h
r10177 r11248 1 /** @file psVector.h 2 * 3 * @brief Contains basic vector definitions and operations 4 * 5 * This file defines the basic type for a vector struct and functions useful 6 * in manupulating vectors. 7 * 8 * @ingroup Vector 9 * 10 * @author Robert DeSonia, MHPCC 11 * @author Ross Harman, MHPCC 12 * 13 * @version $Revision: 1.60 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-11-24 20:51:43 $ 15 * 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 1 /* @file psVector.h 2 * 3 * @brief basic vector definitions and operations 4 * 5 * This file defines the basic type for a vector struct and functions useful 6 * in manupulating vectors. 7 * 8 * @author Robert DeSonia, MHPCC 9 * @author Ross Harman, MHPCC 10 * 11 * @version $Revision: 1.61 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2007-01-23 22:47:23 $ 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 17 14 */ 18 15 … … 20 17 #define PS_VECTOR_H 21 18 22 #include<stdio.h> 23 19 /// @addtogroup MathTypes Mathematical Structures 20 /// @{ 21 22 #include <stdio.h> 24 23 #include "psType.h" 25 26 /// @addtogroup Vector27 /// @{28 24 29 25 /** An vector to support primitive types. … … 372 368 373 369 /// @} 374 375 370 #endif // #ifndef PS_VECTOR_H
Note:
See TracChangeset
for help on using the changeset viewer.
