[][src]Enum splines::interpolation::Interpolation

pub enum Interpolation<T, V> {
    Step(T),
    Linear,
    Cosine,
    CatmullRom,
    Bezier(V),
    StrokeBezier(V, V),
    // some variants omitted
}

Available kind of interpolations.

Feel free to visit each variant for more documentation.

Variants

Step(T)

Hold a Key until the sampling value passes the normalized step threshold, in which case the next key is used.

Note: if you set the threshold to 0.5, the first key will be used until half the time between the two keys; the second key will be in used afterwards. If you set it to 1.0, the first key will be kept until the next key. Set it to 0. and the first key will never be used.

Linear

Linear interpolation between a key and the next one.

Cosine

Cosine interpolation between a key and the next one.

CatmullRom

Catmull-Rom interpolation, performing a cubic Hermite interpolation using four keys.

Bezier(V)

Bézier interpolation.

A control point that uses such an interpolation is associated with an extra point. The segmant connecting both is called the tangent of this point. The part of the spline defined between this control point and the next one will be interpolated across with Bézier interpolation. Two cases are possible:

  • The next control point also has a Bézier interpolation mode. In this case, its tangent is used for the interpolation process. This is called cubic Bézier interpolation and it kicks ass.
  • The next control point doesn’t have a Bézier interpolation mode set. In this case, the tangent used for the next control point is defined as the segment connecting that control point and the current control point’s associated point. This is called quadratic Bézer interpolation and it kicks ass too, but a bit less than cubic.
StrokeBezier(V, V)

A special Bézier interpolation using an input tangent and an output tangent.

With this kind of interpolation, a control point has an input tangent, which has the same role as the one defined by Interpolation::Bezier, and an output tangent, which has the same role defined by the next key’s Interpolation::Bezier if present, normally.

What it means is that instead of setting the output tangent as the next key’s Bézier tangent, this interpolation mode allows you to manually set the output tangent. That will yield more control on the tangents but might generate discontinuities. Use with care.

Stroke Bézier interpolation is always a cubic Bézier interpolation by default.

Trait Implementations

impl<T: Clone, V: Clone> Clone for Interpolation<T, V>[src]

impl<T: Copy, V: Copy> Copy for Interpolation<T, V>[src]

impl<T: Debug, V: Debug> Debug for Interpolation<T, V>[src]

impl<T, V> Default for Interpolation<T, V>[src]

fn default() -> Self[src]

Interpolation::Linear is the default.

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

impl<T: Eq, V: Eq> Eq for Interpolation<T, V>[src]

impl<T: PartialEq, V: PartialEq> PartialEq<Interpolation<T, V>> for Interpolation<T, V>[src]

impl<T, V> Serialize for Interpolation<T, V> where
    T: Serialize,
    V: Serialize
[src]

impl<T, V> StructuralEq for Interpolation<T, V>[src]

impl<T, V> StructuralPartialEq for Interpolation<T, V>[src]

Auto Trait Implementations

impl<T, V> RefUnwindSafe for Interpolation<T, V> where
    T: RefUnwindSafe,
    V: RefUnwindSafe

impl<T, V> Send for Interpolation<T, V> where
    T: Send,
    V: Send

impl<T, V> Sync for Interpolation<T, V> where
    T: Sync,
    V: Sync

impl<T, V> Unpin for Interpolation<T, V> where
    T: Unpin,
    V: Unpin

impl<T, V> UnwindSafe for Interpolation<T, V> where
    T: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,