[][src]Enum genmesh::Polygon

pub enum Polygon<T> {
    PolyTri(Triangle<T>),
    PolyQuad(Quad<T>),
}

This is All-the-types container. This exists since some generators produce both Triangles and Quads.

Variants

PolyTri(Triangle<T>)

A wraped triangle

PolyQuad(Quad<T>)

A wraped quad

Trait Implementations

impl IndexedPolygon<Polygon<usize>> for Circle[src]

Important traits for IndexedPolygonIterator<'a, T, V>
fn indexed_polygon_iter<'a>(&'a self) -> IndexedPolygonIterator<'a, Self, V>[src]

create a iterator that will return a polygon for each face in the source mesh

impl IndexedPolygon<Polygon<usize>> for Cylinder[src]

Important traits for IndexedPolygonIterator<'a, T, V>
fn indexed_polygon_iter<'a>(&'a self) -> IndexedPolygonIterator<'a, Self, V>[src]

create a iterator that will return a polygon for each face in the source mesh

impl IndexedPolygon<Polygon<usize>> for SphereUv[src]

Important traits for IndexedPolygonIterator<'a, T, V>
fn indexed_polygon_iter<'a>(&'a self) -> IndexedPolygonIterator<'a, Self, V>[src]

create a iterator that will return a polygon for each face in the source mesh

impl<T: Clone, U> MapVertex<T, U> for Polygon<T>[src]

type Output = Polygon<U>

Output should be a a container of the same shape of the type It's internal values should reflect any transformation the map did. Read more

impl<T: Clone> EmitLines for Polygon<T>[src]

type Vertex = T

The Vertex defines the corners of a Polygon

impl<T: Clone> EmitTriangles for Polygon<T>[src]

type Vertex = T

The content of each point in the face

impl<T: Copy> Copy for Polygon<T>[src]

impl<T: Clone> Clone for Polygon<T>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq<Polygon<T>> for Polygon<T>[src]

impl<T: Debug> Debug for Polygon<T>[src]

Auto Trait Implementations

impl<T> Unpin for Polygon<T> where
    T: Unpin

impl<T> Sync for Polygon<T> where
    T: Sync

impl<T> Send for Polygon<T> where
    T: Send

impl<T> UnwindSafe for Polygon<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Polygon<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]