[][src]Struct genmesh::Quad

pub struct Quad<T> {
    pub x: T,
    pub y: T,
    pub z: T,
    pub w: T,
}

A polygon with 4 points. Maps to GL_QUADS

Fields

x: T

the first point of a quad

y: T

the second point of a quad

z: T

the third point of a quad

w: T

the fourth point of a quad

Methods

impl<T> Quad<T>[src]

pub fn new(v0: T, v1: T, v2: T, v3: T) -> Self[src]

create a new Quad with supplied vertices

Trait Implementations

impl IndexedPolygon<Quad<usize>> for Cube[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<Quad<usize>> for Plane[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<Quad<usize>> for Torus[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 Quad<T>[src]

type Output = Quad<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 Quad<T>[src]

type Vertex = T

The Vertex defines the corners of a Polygon

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

type Vertex = T

The content of each point in the face

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

impl<T: Eq> Eq for Quad<T>[src]

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

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

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

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

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

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

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

impl<T> RefUnwindSafe for Quad<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]