[][src]Trait nannou::geom::graph::node::ApplyTransform

pub trait ApplyTransform<S> where
    S: BaseFloat
{ fn apply_transform(self, transform: &PreparedTransform<S>) -> Self; }

Vertex types which may apply a transform and produce a resulting transform.

Required methods

fn apply_transform(self, transform: &PreparedTransform<S>) -> Self

Apply the given transform and return the result.

Loading content...

Implementors

impl<S> ApplyTransform<S> for Point3<S> where
    S: BaseFloat
[src]

impl<S, V, C> ApplyTransform<S> for WithColor<V, C> where
    V: ApplyTransform<S>,
    S: BaseFloat
[src]

impl<S, V, N> ApplyTransform<S> for WithNormal<V, N> where
    V: ApplyTransform<S>,
    S: BaseFloat
[src]

impl<S, V, T> ApplyTransform<S> for WithTexCoords<V, T> where
    V: ApplyTransform<S>,
    S: BaseFloat
[src]

Loading content...