hermite method

HermiteInterpolator hermite(
  1. double scale
)

Implementation

HermiteInterpolator hermite(double scale) {
  return HermiteInterpolator(
    input: this,
    scale: scale,
  );
}