Enum luminance::face_culling::FaceCullingOrder[][src]

pub enum FaceCullingOrder {
    CW,
    CCW,
}

Face culling order.

The order determines how a triangle is determined to be discarded. If the triangle’s vertices wind up in the same direction as the FaceCullingOrder, it’s assigned the front side, otherwise, it’s the back side.

Variants

Clockwise order.

Counter-clockwise order.

Trait Implementations

impl Copy for FaceCullingOrder
[src]

impl Clone for FaceCullingOrder
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FaceCullingOrder
[src]

Formats the value using the given formatter. Read more

impl Eq for FaceCullingOrder
[src]

impl PartialEq for FaceCullingOrder
[src]

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

This method tests for !=.

Auto Trait Implementations