Enum amethyst_animation::InterpolationType [] [src]

pub enum InterpolationType {
    Linear,
    SphericalLinear,
    Step,
    CatmullRomSpline,
    CubicSpline,
}

Supported interpolation functions

Variants

Linear interpolation

Spherical linear interpolation

Step interpolation

Catmull-Rom spline interpolation

Cubic Hermite spline interpolation

Trait Implementations

impl Debug for InterpolationType
[src]

[src]

Formats the value using the given formatter.

impl Clone for InterpolationType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for InterpolationType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Interpolate<[f32; 3]> for InterpolationType
[src]

[src]

Interpolation function, f(input) -> T Read more

impl Interpolate<[f32; 4]> for InterpolationType
[src]

[src]

Interpolation function, f(input) -> T Read more