pub trait Interpolator:
Sized
+ Copy
+ PartialOrd {
// Required method
fn normalize(self, start: Self, end: Self) -> Self;
}Expand description
Types that can be used as interpolator in splines.
An interpolator value is like the fabric on which control keys (and sampled values) live on.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.