1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
//! This module contains anything related to interpolation.
#[derive(Debug, Copy, Clone)]
/// The `Interpolation` Type.
/// This represents the various forms of interpolation that can be performed.
pub enum Interpolation {
/// `0`
Step = 0,
/// `t`
Linear = 1,
/// `t * t * (3 - 2 * t)`
Smooth = 2,
/// `t.powi(2)`
Ramp = 3,
}
impl From<u8> for Interpolation {
fn from(raw: u8) -> Interpolation {
match raw {
0 => Interpolation::Step,
1 => Interpolation::Linear,
2 => Interpolation::Smooth,
3 => Interpolation::Ramp,
_ => Interpolation::Step,
}
}
}
impl Interpolation {
/// This performs the interpolation.
///
/// # Examples
///
/// ```
/// # extern crate rust_rocket;
/// # use rust_rocket::interpolation::Interpolation;
/// # fn main() {
/// assert_eq!(Interpolation::Linear.interpolate(0.5), 0.5);
/// # }
/// ```
///
/// ```
/// # extern crate rust_rocket;
/// # use rust_rocket::interpolation::Interpolation;
/// # fn main() {
/// assert_eq!(Interpolation::Step.interpolate(0.5), 0.);
/// # }
/// ```
pub fn interpolate(&self, t: f32) -> f32 {
match *self {
Interpolation::Step => 0.0,
Interpolation::Linear => t,
Interpolation::Smooth => t * t * (3.0 - 2.0 * t),
Interpolation::Ramp => t.powi(2),
}
}
}