[][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: PartialEq> PartialEq<Edge<S>> for Edge<S>[src]

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

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

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

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

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

Blanket Implementations

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

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> Style for T where
    T: Any + Debug + PartialEq<T>, 
[src]

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.