Enum genmesh::Polygon [] [src]

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

A wraped triangle

A wraped quad

Trait Implementations

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

The content of each point in the face

convert a polygon to one or more triangles, each triangle is returned by calling emit Read more

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

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

map a function to each vertex in polygon creating a new polygon

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

The Vertex defines the corners of a Polygon

convert a polygon into lines, each line is emitted via calling of the callback of emit This allow for a variable amount of lines to be returned Read more