IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 18, 2005, 6:16:02 PM (21 years ago)
Author:
gusciora
Message:

Created tests for inverting linear psPlaneTransforms. Fixed a bug with the
linear transform inversion code.

File:
1 edited

Legend:

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

    r3709 r3714  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.97 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-19 00:34:04 $
     9 *  @version $Revision: 1.98 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-19 04:16:02 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1313 *
    14  *  XXX: What happens if the polyEVal functions are called with data of the wrong
     14 *  XXX: What happens if the polyEval functions are called with data of the wrong
    1515 *       type?
    1616 *  XXX: Should the "coeffErr[]" be used as well?  Bug ???.  Ignore coeffErr
    1717 *
     18 *  XXX: In the various polyAlloc(n) functions, n is really the order of the
     19 *  polynomial plus 1.  To create a 2nd-order polynomial, n == 3.
    1820 */
    1921/*****************************************************************************/
     
    175177static void dPolynomial2DFree(psDPolynomial2D* myPoly)
    176178{
    177     psS32 x = 0;
    178 
    179     for (x = 0; x < myPoly->nX; x++) {
     179    //printf("dPolynomial2DFree(): HMMM: myPoly->nX is %d\n", myPoly->nX);
     180    //printf("dPolynomial2DFree(): HMMM: myPoly->nY is %d\n", myPoly->nY);
     181    for (psS32 x = 0; x < myPoly->nX; x++) {
    180182        psFree(myPoly->coeff[x]);
    181183        psFree(myPoly->coeffErr[x]);
Note: See TracChangeset for help on using the changeset viewer.