IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 14, 2006, 10:05:05 AM (20 years ago)
Author:
drobbin
Message:

Updated doxygen in region. Updated printing in metadata. Updated itemPrint in MetaConfig. Edited MetaItemCompare tap test and added/updated MetaItemParse tap test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psRegion.h

    r7901 r8312  
    1111typedef struct
    1212{
    13     float x0;                         ///< the first column of the region.
    14     float x1;                         ///< the last column of the region.
    15     float y0;                         ///< the first row of the region.
    16     float y1;                         ///< the last row of the region.
     13    float x0;                          ///< the first column of the region.
     14    float x1;                          ///< the last column of the region.
     15    float y0;                          ///< the first row of the region.
     16    float y1;                          ///< the last row of the region.
    1717}
    1818psRegion;
     
    2222 * @return psRegion* : a new psRegion.
    2323 */
    24 psRegion *psRegionAlloc(float x0,       ///< the first column of the region.
    25                         float x1,       ///< the last column of the region + 1.
    26                         float y0,       ///< the first row of the region.
    27                         float y1        ///< the last row of the region + 1.
    28                        );
     24psRegion *psRegionAlloc(
     25    float x0,                          ///< the first column of the region.
     26    float x1,                          ///< the last column of the region + 1.
     27    float y0,                          ///< the first row of the region.
     28    float y1                           ///< the last row of the region + 1.
     29);
    2930
    3031/** Checks the type of a particular pointer.
     
    4041/** Create a psRegion with the specified attributes.
    4142 *
    42  *  @return psRegion : a cooresponding psRegion.
     43 *  @return psRegion :      a corresponding psRegion.
    4344 */
    4445psRegion psRegionSet(
     
    5455 *  shall be of the standard IRAF form '[x0:x1,y0:y1]'
    5556 *
    56  *  @return psRegion:  A new psRegion struct, or NULL is not successful.
     57 *  @return psRegion:       A new psRegion struct, or NULL is not successful.
    5758 */
    5859psRegion psRegionFromString(
     
    7576 */
    7677psRegion psRegionForSquare(
    77     double x,                           ///< x coordinate at square-center
    78     double y,                           ///< y coordinate at square-center
    79     double radius                       ///< radius of square
     78    double x,                          ///< x coordinate at square-center
     79    double y,                          ///< y coordinate at square-center
     80    double radius                      ///< radius of square
    8081);
    8182
Note: See TracChangeset for help on using the changeset viewer.