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