IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 16, 2008, 4:38:59 PM (17 years ago)
Author:
eugene
Message:

rename psImageUnbinPixel_V2 to psImageUnbinPixel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageMap.c

    r20020 r20767  
    77 *  @author Eugene Magnier, IfA
    88 *
    9  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2008-10-09 20:42:51 $
     9 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2008-11-17 02:37:28 $
    1111 *
    1212 *  Copyright 2007 Institute for Astronomy, University of Hawaii
     
    349349double psImageMapEval(const psImageMap *map, float x, float y)
    350350{
    351     // This may be called in a type loop, so no assertions
    352     return psImageUnbinPixel_V2(x, y, map->map, map->binning);
     351    // This may be called in a tight loop, so no assertions
     352    return psImageUnbinPixel(x, y, map->map, map->binning);
    353353}
    354354
     
    365365
    366366    for (int i = 0; i < x->n; i++) {
    367         result->data.F32[i] = psImageUnbinPixel_V2(x->data.F32[i], y->data.F32[i], map->map, map->binning);
     367        result->data.F32[i] = psImageUnbinPixel(x->data.F32[i], y->data.F32[i], map->map, map->binning);
    368368    }
    369369
Note: See TracChangeset for help on using the changeset viewer.