pub fn cubic_hermite_def<V, T>(
x: (V, T),
a: (V, T),
b: (V, T),
y: (V, T),
t: T,
) -> V
Expand description
Default implementation of Interpolate::cubic_hermite
.
V
is the value being interpolated. T
is the sampling value (also sometimes called time).