logo
pub trait Interpolate<T = Self>: Sized {
    type Output;

    fn lerp(self, other: T, f: R64) -> Self::Output;

    fn midpoint(self, other: T) -> Self::Output { ... }
}

Required Associated Types

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors