pub trait Lerp {
    fn lerp(self, end: Self, percent: f32) -> Self;
}

Required methods

Implementations on Foreign Types

Implementors