IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImage.h

    r1426 r1440  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-09 22:44:25 $
     14 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-09 23:34:58 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5050
    5151    union {
    52         psU8 **U8;              ///< Unsigned 8-bit integer data.
    53         psU16 **U16;            ///< Unsigned 16-bit integer data.
    54         psU32 **U32;            ///< Unsigned 32-bit integer data.
    55         psU64 **U64;            ///< Unsigned 64-bit integer data.
    56         psS8 **S8;              ///< Signed 8-bit integer data.
    57         psS16 **S16;            ///< Signed 16-bit integer data.
    58         psS32 **S32;            ///< Signed 32-bit integer data.
    59         psS64 **S64;            ///< Signed 64-bit integer data.
    60         psF32 **F32;            ///< Single-precision float data.
    61         psF64 **F64;            ///< Double-precision float data.
    62         psC32 **C32;            ///< Single-precision complex data.
    63         psC64 **C64;            ///< Double-precision complex data.
    64         psPTR **PTR;            ///< Void pointers.
    65         psPTR *V;               ///< Pointer to data.
     52        psU8* *U8;              ///< Unsigned 8-bit integer data.
     53        psU16* *U16;            ///< Unsigned 16-bit integer data.
     54        psU32* *U32;            ///< Unsigned 32-bit integer data.
     55        psU64* *U64;            ///< Unsigned 64-bit integer data.
     56        psS8* *S8;              ///< Signed 8-bit integer data.
     57        psS16* *S16;            ///< Signed 16-bit integer data.
     58        psS32* *S32;            ///< Signed 32-bit integer data.
     59        psS64* *S64;            ///< Signed 64-bit integer data.
     60        psF32* *F32;            ///< Single-precision float data.
     61        psF64* *F64;            ///< Double-precision float data.
     62        psC32* *C32;            ///< Single-precision complex data.
     63        psC64* *C64;            ///< Double-precision complex data.
     64        psPTR* *PTR;            ///< Void pointers.
     65        psPTR* V;               ///< Pointer to data.
    6666    } data;                     ///< Union for data types.
    67     const struct psImage *parent;       ///< Parent, if a subimage.
     67    const struct psImage* parent;       ///< Parent, if a subimage.
    6868    int nChildren;              ///< Number of subimages.
    69     struct psImage **children;  ///< Children of this region.
     69    struct psImage* *children;  ///< Children of this region.
    7070}
    7171psImage;
     
    8282 * specified size and type.
    8383 *
    84  * @return psImage*: Pointer to psImage.
     84 * @return psImage* : Pointer to psImage.
    8585 *
    8686 */
    87 psImage *psImageAlloc(unsigned int numCols,     ///< Number of rows in image.
     87psImage* psImageAlloc(unsigned int numCols,     ///< Number of rows in image.
    8888                      unsigned int numRows,     ///< Number of columns in image.
    8989                      const psElemType type     ///< Type of data for image.
     
    9595 *
    9696 */
    97 psImage *psImageRecycle(psImage * old,  ///< the psImage to recycle by resizing image buffer
     97psImage* psImageRecycle(psImage* old,  ///< the psImage to recycle by resizing image buffer
    9898                        unsigned int numCols,   ///< the desired number of columns in image
    9999                        unsigned int numRows,   ///< the desired number of rows in image
     
    106106 *
    107107 */
    108 int psImageFreeChildren(psImage * image
     108int psImageFreeChildren(psImage* image
    109109
    110110                        /**< psImage in which all children shall be deallocated */
    111111                       );
    112112
    113 psF32 psImagePixelInterpolate(const psImage * input,
     113psF32 psImagePixelInterpolate(const psImage* input,
    114114                              float x, float y, psF32 unexposedValue, psImageInterpolateMode mode);
    115115
    116116#    define p_psImagePixelInterpolateFcns(TYPE) \
    117117inline psF64 p_psImagePixelInterpolateFLAT_##TYPE( \
    118         const psImage *input, \
     118        const psImage* input, \
    119119        float x, \
    120120        float y, \
     
    122122                                                 ); \
    123123inline psF64 p_psImagePixelInterpolateBILINEAR_##TYPE( \
    124         const psImage *input, \
     124        const psImage* input, \
    125125        float x, \
    126126        float y, \
     
    130130#    define p_psImagePixelInterpolateComplexFcns(TYPE) \
    131131inline psC64 p_psImagePixelInterpolateFLAT_##TYPE( \
    132         const psImage *input, \
     132        const psImage* input, \
    133133        float x, \
    134134        float y, \
     
    136136                                                 ); \
    137137inline psC64 p_psImagePixelInterpolateBILINEAR_##TYPE( \
    138         const psImage *input, \
     138        const psImage* input, \
    139139        float x, \
    140140        float y, \
Note: See TracChangeset for help on using the changeset viewer.