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
//! This module contains anything related to interpolation.

use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, 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
    ///
    /// ```
    /// # use rust_rocket::interpolation::Interpolation;
    /// assert_eq!(Interpolation::Linear.interpolate(0.5), 0.5);
    /// ```
    ///
    /// ```
    /// # use rust_rocket::interpolation::Interpolation;
    /// 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),
        }
    }
}