[][src]Struct genmesh::Triangle

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

A polygon with 3 points. Maps to GL_TRIANGLE

Fields

x: T

the first point of a triangle

y: T

the second point of a triangle

z: T

the third point of a triangle

Methods

impl<T> Triangle<T>[src]

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

create a new Triangle with supplied vertcies

Trait Implementations

impl IndexedPolygon<Triangle<usize>> for Cone[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<Triangle<usize>> for IcoSphere[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 Triangle<T>[src]

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

type Vertex = T

The Vertex defines the corners of a Polygon

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

type Vertex = T

The content of each point in the face

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

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

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

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

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

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

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

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

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

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