[][src]Enum shine_gltf::animation::Interpolation

pub enum Interpolation {
    Linear,
    Step,
    CatmullRomSpline,
    CubicSpline,
}

Specifies an interpolation algorithm.

Variants

Linear

Linear interpolation.

The animated values are linearly interpolated between keyframes. When targeting a rotation, spherical linear interpolation (slerp) should be used to interpolate quaternions. The number output of elements must equal the number of input elements.

Step

Step interpolation.

The animated values remain constant to the output of the first keyframe, until the next keyframe. The number of output elements must equal the number of input elements.

CatmullRomSpline

Uniform Catmull-Rom spline interpolation.

The animation's interpolation is computed using a uniform Catmull-Rom spline. The number of output elements must equal two more than the number of input elements. The first and last output elements represent the start and end tangents of the spline. There must be at least four keyframes when using this interpolation.

CubicSpline

Cubic spline interpolation.

The animation's interpolation is computed using a uniform Catmull-Rom spline. The number of output elements must equal two more than the number of input elements. The first and last output elements represent the start and end tangents of the spline. There must be at least four keyframes when using this interpolation.

Trait Implementations

impl Eq for Interpolation[src]

impl Copy for Interpolation[src]

impl PartialEq<Interpolation> for Interpolation[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Default for Interpolation[src]

impl Clone for Interpolation[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Interpolation[src]

impl Serialize for Interpolation[src]

impl<'de> Deserialize<'de> for Interpolation[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]