IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 29, 2004, 12:15:33 PM (22 years ago)
Author:
gusciora
Message:

Changed order of spline eval.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/dataManip/tst_psFunc04.c

    r2439 r2846  
    4747        x = 0.5 + (float) i+1;
    4848        y = psSpline1DEval(
    49                 x,
    50                 tmpSpline
     49                tmpSpline,
     50                x
    5151            );
    5252        if (fabs(x-y) > FLT_EPSILON) {
     
    102102        x = 0.5 + (float) i+1;
    103103        y = psSpline1DEval(
    104                 x,
    105                 tmpSpline
     104                tmpSpline,
     105                x
    106106            );
    107107        if (fabs(x-y) > FLT_EPSILON) {
Note: See TracChangeset for help on using the changeset viewer.