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

Required Methods

Implementations on Foreign Types

Implementors