Enum gltf::animation::Interpolation [−][src]
pub enum Interpolation {
Linear,
Step,
CatmullRomSpline,
CubicSpline,
}Specifies an interpolation algorithm.
Variants
LinearLinear 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.
StepStep 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.
CatmullRomSplineUniform 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.
CubicSplineCubic 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 Serialize for Interpolation[src]
impl Serialize for Interpolationfn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, [src]
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer, Serialize this value into the given Serde serializer. Read more
impl Clone for Interpolation[src]
impl Clone for Interpolationfn clone(&self) -> Interpolation[src]
fn clone(&self) -> InterpolationReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Default for Interpolation[src]
impl Default for Interpolationfn default() -> Interpolation[src]
fn default() -> InterpolationReturns the "default value" for a type. Read more
impl Debug for Interpolation[src]
impl Debug for Interpolationfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for Interpolation[src]
impl Copy for Interpolationimpl<'de> Deserialize<'de> for Interpolation[src]
impl<'de> Deserialize<'de> for Interpolationfn deserialize<__D>(
__deserializer: __D
) -> Result<Interpolation, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(
__deserializer: __D
) -> Result<Interpolation, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl Send for Interpolation
impl Send for Interpolationimpl Sync for Interpolation
impl Sync for Interpolation