Trait lininterp::LerpBetween [] [src]

pub trait LerpBetween<T>: Sized + Clone where
    T: Lerp<Self>, 
{ fn lerp_between(&self, a: &T, b: &T) -> T { ... } }

Linear interpolation, reversed order params 'self' is the blend factor; trailing params are the range

Provided Methods

Implementors