[][src]Enum golem::GeometryMode

pub enum GeometryMode {
    Points,
    Lines,
    LineStrip,
    LineLoop,
    Triangles,
    TriangleStrip,
    TriangleFan,
}

The GeometryMode determines how the data is drawn during ShaderProgram::draw

Variants

Points

Each element forms a single point

[1, 2, 3, 4, 5, 6] -> [(1), (2), (3), (4), (5), (6)]

Lines

Each pair of elements forms a thin line

[1, 2, 3, 4, 5, 6] -> [(1, 2), (3, 4), (5, 6)]

LineStrip

Each pair of elements forms a chain of lines

[1, 2, 3, 4, 5, 6] -> [(1, 2), (2, 3), (3, 4), (4, 5), (5, 6)]

LineLoop

Each pair of elements forms a chain of lines, connected to the original

[1, 2, 3, 4, 5, 6] -> [(1, 2), (2, 3), (3, 4), (4, 5), (5, 6), (6, 1)]

Triangles

Each trio of elements forms a distinct triangle

[1, 2, 3, 4, 5, 6] -> [(1, 2, 3), (4, 5, 6)]

TriangleStrip

Each trio of elements forms a triangle, with the next vertex taking the previous two

[1, 2, 3, 4, 5, 6] -> [(1, 2, 3), (2, 3, 4), (3, 4, 5), (4, 5, 6)]

TriangleFan

The first elements forms the center of a fan, with each pair of vertices forming a triangle

[1, 2, 3, 4, 5, 6] -> [(1, 2, 3), (1, 3, 4), (1, 4, 5), (1, 5, 6)]

Trait Implementations

impl Clone for GeometryMode[src]

impl Copy for GeometryMode[src]

impl Eq for GeometryMode[src]

impl Hash for GeometryMode[src]

impl PartialEq<GeometryMode> for GeometryMode[src]

impl StructuralEq for GeometryMode[src]

impl StructuralPartialEq for GeometryMode[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.