pub trait Interpolate {
// Required method
fn interpolate(&self, other: &Self, t: f64) -> Self;
}Expand description
Easy access to interpolation tooling for All S2JSON Core Types
Required Methods§
Sourcefn interpolate(&self, other: &Self, t: f64) -> Self
fn interpolate(&self, other: &Self, t: f64) -> Self
Interpolate between two of the same type
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.