Trait nannou::draw::mesh::vertex::IntoVertex[][src]

pub trait IntoVertex<S> {
    fn into_vertex(self) -> Vertex<S>;
}

Types that can be converted directly into a draw::mesh::Vertex.

Required Methods

Convert self into a Vertex.

Implementations on Foreign Types

impl<'a, S, T> IntoVertex<S> for &'a T where
    T: Clone + IntoVertex<S>, 
[src]

impl<S> IntoVertex<S> for [S; 2] where
    S: BaseFloat
[src]

impl<S> IntoVertex<S> for [S; 3] where
    S: BaseFloat
[src]

impl<S> IntoVertex<S> for (S, S) where
    S: BaseFloat
[src]

impl<S> IntoVertex<S> for (S, S, S) where
    S: BaseFloat
[src]

impl<S, T> IntoVertex<S> for (T, Color) where
    S: BaseFloat,
    T: IntoPoint<S>, 
[src]

Implementors