[][src]Struct nannou::geom::graph::edge::Edge

pub struct Edge<S = Default> {
    pub kind: Kind,
    pub weight: S,
}

Describes an edge within the geometry graph.

Fields

kind: Kind

The unique kind of edge.

Represents the combination of Axis and Relative association described by the edge.

weight: S

A weight whose value's meaning depends on the edge's Relative association.

For Position kind edges this represents a relative scalar value. For Orientation kind edges this represents a relative angle in radians. For Scale kind edges this represents the relative scale.

Methods

impl<S> Edge<S>[src]

pub fn new(kind: Kind, weight: S) -> Self[src]

Simple constructor for an Edge.

pub fn x(relative: Relative, weight: S) -> Self[src]

Simple constructor for an Edge describing a relative association over the X axis.

pub fn y(relative: Relative, weight: S) -> Self[src]

Simple constructor for an Edge describing a relative association over the Y axis.

pub fn z(relative: Relative, weight: S) -> Self[src]

Simple constructor for an Edge describing a relative association over the Z axis.

pub fn position(axis: Axis, weight: S) -> Self[src]

Simple constructor for an Edge describing a relative position over the given axis.

pub fn orientation(axis: Axis, weight: S) -> Self[src]

Simple constructor for an Edge describing a relative orientation over the given axis.

pub fn scale(axis: Axis, weight: S) -> Self[src]

Simple constructor for an Edge describing a relative scale over the given axis.

pub fn x_position(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative position over the X axis.

pub fn x_orientation(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative orientation over the X axis.

pub fn x_scale(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative scale over the X axis.

pub fn y_position(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative position over the Y axis.

pub fn y_orientation(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative orientation over the Y axis.

pub fn y_scale(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative scale over the Y axis.

pub fn z_position(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative position over the Z axis.

pub fn z_orientation(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative orientation over the Z axis.

pub fn z_scale(weight: S) -> Self[src]

Simple constructor for an Edge describing a relative scale over the Z axis.

Trait Implementations

impl<S: Clone> Clone for Edge<S>[src]

impl<S: Copy> Copy for Edge<S>[src]

impl<S: Debug> Debug for Edge<S>[src]

impl<S: PartialEq> PartialEq<Edge<S>> for Edge<S>[src]

impl<S> StructuralPartialEq for Edge<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for Edge<S> where
    S: RefUnwindSafe

impl<S> Send for Edge<S> where
    S: Send

impl<S> Sync for Edge<S> where
    S: Sync

impl<S> Unpin for Edge<S> where
    S: Unpin

impl<S> UnwindSafe for Edge<S> where
    S: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

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

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

impl<T> SetParameter for T

impl<T> SetParameter for T

impl<T> Style for T where
    T: Any + Debug + PartialEq<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<V, T> VZip<V> for T where
    V: MultiLane<T>,