IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 15, 2023, 4:42:59 PM (3 years ago)
Author:
eugene
Message:

update code comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20230313/psLib/src/math/psSpline.h

    r42336 r42499  
    3636{
    3737    unsigned int n;    ///< The number of knots
    38     psF32 *xKnots; ///< x-coordinate of the knots
    39     psF32 *yKnots; ///< y-coordinate of the knots
    40     psF32 *d2yKnots; ///< 2nd derivative of y at the knots
    41     bool equalSpacing; // if knots are equally spaced, the seqment choice can be optimized
    42     psF32 xMin; // for equally-spaced knots, the value at the lower bound (xKnots[0])
    43     psF32 xMax; // for equally-spaced knots, the value at the upper bound (xKnots[n])
    44     psF32 xDel; // for equally-spaced knots, the spacing (xKnots[n] - xKnots[0])/n
     38    psF32 *xKnots;     ///< x-coordinate of the knots
     39    psF32 *yKnots;     ///< y-coordinate of the knots
     40    psF32 *d2yKnots;   ///< 2nd derivative of y at the knots
     41    bool equalSpacing; ///< if knots are equally spaced, the seqment choice can be optimized
     42    psF32 xMin;        ///< for equally-spaced knots, the value at the lower bound (xKnots[0])
     43    psF32 xMax;        ///< for equally-spaced knots, the value at the upper bound (xKnots[n])
     44    psF32 xDel;        ///< for equally-spaced knots, the spacing (xKnots[n] - xKnots[0])/n
    4545}
    4646psSpline1D;
Note: See TracChangeset for help on using the changeset viewer.