IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 20, 2004, 6:12:37 PM (22 years ago)
Author:
eugene
Message:

substantial API changes based on change to PSLib SDRS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psMath.h

    r380 r753  
    1111    psType type;                        ///< data type information
    1212    union {                           
    13         int i;                          ///< integer value entry
    14         float f;                        ///< float value entry
    15         double d;                       ///< double value entry
    16         complex float c;                ///< complex value entry
    17     } 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;
    1818} p_psScalar;
    1919
     
    2828            void *in1,                  ///< first input
    2929            char *op,                   ///< operator
    30             void *in2                   ///< second input
    31     );
     30            void *in2)                  ///< second input
     31;
    3232
    3333/** Perform a unary operation on two data items (psImage, psVector, psScalar). */
     
    3535psUnaryOp (void *out,                   ///< destination (may be NULL)
    3636           void *in,                    ///< input
    37            char *op                     ///< operator
    38     );
     37           char *op)                    ///< operator
     38;
    3939
    4040/** create a psType-ed structure from a constant double value. */
     
    4545p_psScalar *
    4646psScalarType (char *mode,               ///< type description
    47               ...                       ///< value (or values) of specified types
    48     );
     47              ...)                      ///< value (or values) of specified types
     48;
    4949
    5050/* \} */ // End of MathGroup Functions
Note: See TracChangeset for help on using the changeset viewer.