home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / CAL / HERMITE.CAL < prev    next >
Text File  |  1993-10-07  |  125b  |  5 lines

  1. hermite(p0,p1,r0,r1,t) =    p0 * ((2*t-3)*t*t+1) +
  2.                 p1 * (-2*t+3)*t*t +
  3.                 r0 * (((t-2)*t+1)*t) +
  4.                 r1 * ((t-1)*t*t);
  5.