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

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

Vertex types that have at least 3 dimensions.

Required Methods

The x, y, z location of the vertex.

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]

Implementors