[][src]Struct swf_tree::shape_records::MorphEdge

pub struct MorphEdge {
    pub delta: Vector2D,
    pub morph_delta: Vector2D,
    pub control_delta: Option<Vector2D>,
    pub morph_control_delta: Option<Vector2D>,
}

Fields

delta: Vector2D

Difference between the edge start and edge end in the start-state of the morph shape.

morph_delta: Vector2D

Difference between the edge start and edge end in the end-state of the morph shape.

control_delta: Option<Vector2D>

Difference between the edge start and quadratic bezier control point (if any) in the start-state of the morph shape.

morph_control_delta: Option<Vector2D>

Difference between the edge start and quadratic bezier control point (if any) in the end-state of the morph shape.

Trait Implementations

impl Clone for MorphEdge[src]

impl Copy for MorphEdge[src]

impl Eq for MorphEdge[src]

impl Ord for MorphEdge[src]

impl PartialEq<MorphEdge> for MorphEdge[src]

impl PartialOrd<MorphEdge> for MorphEdge[src]

impl Debug for MorphEdge[src]

impl Hash for MorphEdge[src]

impl Serialize for MorphEdge[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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