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

pub trait IntoPoint<S> {
    fn into_point(self) -> Point<S>;
}

Types that can be converted into a draw::mesh::vertex::Point.

Required methods

fn into_point(self) -> Point<S>

Convert self into a Point.

Loading content...

Implementations on Foreign Types

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

impl<S> IntoPoint<S> for (S, S, S)[src]

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

impl<S> IntoPoint<S> for [S; 3] where
    S: Copy
[src]

Loading content...

Implementors

impl<S> IntoPoint<S> for Point<S>[src]

impl<S> IntoPoint<S> for Point2<S> where
    S: BaseFloat
[src]

Loading content...