IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16108


Ignore:
Timestamp:
Jan 17, 2008, 10:19:34 AM (19 years ago)
Author:
Paul Price
Message:

Changing function names

Location:
trunk/psLib/src/fits
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fits/psFitsFloat.c

    r15630 r16108  
    6767
    6868
    69 psImage *psFitsFloatImageWrite(const psImage *image, psFitsFloat type)
     69psImage *psFitsFloatImageToDisk(const psImage *image, psFitsFloat type)
    7070{
    7171    PS_ASSERT_IMAGE_NON_NULL(image, NULL);
     
    9595
    9696
    97 psImage *psFitsFloatImageRead(psImage *out, const psImage *in, psFitsFloat type)
     97psImage *psFitsFloatImageFromDisk(psImage *out, const psImage *in, psFitsFloat type)
    9898{
    9999    PS_ASSERT_IMAGE_NON_NULL(in, NULL);
  • trunk/psLib/src/fits/psFitsFloat.h

    r15630 r16108  
    1212} psFitsFloat;
    1313
    14 /// Convert an image to custom floating-point in preparation for writing as FITS
    15 psImage *psFitsFloatImageWrite(const psImage *image, ///< Image to convert
     14/// Convert an image to custom floating-point (the disk representation) in preparation for writing as FITS
     15psImage *psFitsFloatImageToDisk(const psImage *image, ///< Image to convert
    1616                               psFitsFloat type ///< Custom floating point type
    1717    );
    1818
    19 /// Convert the custom floating-point image to a floating-point image
    20 psImage *psFitsFloatImageRead(psImage *out, ///< Output image, or NULL
    21                               const psImage *in, ///< Image to convert
    22                               psFitsFloat type ///< Custom floating point type
     19/// Convert the custom floating-point image (the disk representation) to a normal floating-point image
     20psImage *psFitsFloatImageFromDisk(psImage *out, ///< Output image, or NULL
     21                                  const psImage *in, ///< Image to convert
     22                                  psFitsFloat type ///< Custom floating point type
    2323    );
    2424
Note: See TracChangeset for help on using the changeset viewer.