Changeset 753 for trunk/archive/pslib/include/psMath.h
- Timestamp:
- May 20, 2004, 6:12:37 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psMath.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psMath.h
r380 r753 11 11 psType type; ///< data type information 12 12 union { 13 int i;///< integer value entry14 float f; ///< float value entry15 double d; ///< double value entry16 complex float c;///< complex value entry17 } val;13 psS32 S32; ///< integer value entry 14 psF32 F32; ///< float value entry 15 psF64 F64; ///< double value entry 16 psC32 C32; ///< complex value entry 17 } data; 18 18 } p_psScalar; 19 19 … … 28 28 void *in1, ///< first input 29 29 char *op, ///< operator 30 void *in2 ///< second input31 );30 void *in2) ///< second input 31 ; 32 32 33 33 /** Perform a unary operation on two data items (psImage, psVector, psScalar). */ … … 35 35 psUnaryOp (void *out, ///< destination (may be NULL) 36 36 void *in, ///< input 37 char *op ///< operator38 );37 char *op) ///< operator 38 ; 39 39 40 40 /** create a psType-ed structure from a constant double value. */ … … 45 45 p_psScalar * 46 46 psScalarType (char *mode, ///< type description 47 ... ///< value (or values) of specified types48 );47 ...) ///< value (or values) of specified types 48 ; 49 49 50 50 /* \} */ // End of MathGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
