IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 23, 2006, 12:25:31 PM (20 years ago)
Author:
gusciora
Message:

Misc code cleaning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psSpline.c

    r5517 r6186  
    77*  splines.
    88*
    9 *  @version $Revision: 1.132 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-11-15 20:10:32 $
     9*  @version $Revision: 1.133 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2006-01-23 22:25:31 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9090(F32).
    9191 
    92 XXX: This algorithm is derived from the Numerical Recipes.
    9392XXX: use recycled vectors for internal data.
    9493XXX: do an F64 version?
     
    111110    psF32 *Y = (psF32 *) & (y->data.F32[0]);
    112111    //
    113     // XXX: The second derivatives at the endpoints, undefined in the SDR,
     112    // The second derivatives at the endpoints, undefined in the SDR,
    114113    // are set in psConstants.h: PS_LEFT_SPLINE_DERIV, PS_RIGHT_SPLINE_DERIV.
    115114    //
     
    335334LaGrange interpolation.
    336335 *****************************************************************************/
    337 static psF32 interpolate1DF32(psF32 *domain,
    338                               psF32 *range,
    339                               unsigned int n,
    340                               unsigned int order,
    341                               psF32 x)
     336static psF32 interpolate1DF32(
     337    psF32 *domain,
     338    psF32 *range,
     339    unsigned int n,
     340    unsigned int order,
     341    psF32 x)
    342342{
    343343    psTrace(__func__, 4, "---- %s() begin ----\n", __func__);
Note: See TracChangeset for help on using the changeset viewer.