[][src]Trait nannou::geom::vertex::Vertex3d

pub trait Vertex3d: Vertex2d {
    fn point3(self) -> Point3<Self::Scalar>;
}

Vertex types that have at least 3 dimensions.

Required methods

fn point3(self) -> Point3<Self::Scalar>

The x, y, z location of the vertex.

Loading content...

Implementations on Foreign Types

impl<S> Vertex3d for [S; 3] where
    S: BaseNum
[src]

impl<S> Vertex3d for (S, S, S) where
    S: BaseNum
[src]

Loading content...

Implementors

impl<S> Vertex3d for Point3<S> where
    S: BaseNum
[src]

impl<V> Vertex3d for Srgba<V> where
    V: Vertex3d
[src]

impl<V, C> Vertex3d for WithColor<V, C> where
    V: Vertex3d,
    Self: Vertex<Scalar = V::Scalar>, 
[src]

impl<V, N> Vertex3d for WithNormal<V, N> where
    V: Vertex3d,
    Self: Vertex<Scalar = V::Scalar>, 
[src]

impl<V, T> Vertex3d for WithTexCoords<V, T> where
    V: Vertex3d,
    Self: Vertex<Scalar = V::Scalar>, 
[src]

Loading content...