Struct mash::geometry::Triangle [] [src]

pub struct Triangle<V: Vertex> {
    pub vertices: [V; 3],
}

A triangle.

Fields

The vertices that make up the triangle.

Trait Implementations

impl<V: Debug + Vertex> Debug for Triangle<V>
[src]

Formats the value using the given formatter.

impl<V: PartialEq + Vertex> PartialEq for Triangle<V>
[src]

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

This method tests for !=.

impl<V: PartialOrd + Vertex> PartialOrd for Triangle<V>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more