pub trait Interpolation<T> {
    fn lerp(self, rhs: Self, t: T) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors