interpHermiteFunc method

double interpHermiteFunc(
  1. double t
)

Implementation

double interpHermiteFunc(double t) => t * t * (3 - 2 * t);