Trait oddio::Interpolate[][src]

pub trait Interpolate {
    fn interpolate(&self, other: &Self, t: f32) -> Self;
}
Expand description

Types that can be linearly interpolated, for use with Smoothed

Required methods

Interpolate between self and other by t, which should be in [0, 1]

Implementations on Foreign Types

Implementors