Enum luminance::face_culling::FaceCullingMode[][src]

pub enum FaceCullingMode {
    Front,
    Back,
    Both,
}

Side to show and side to cull.

Variants

Cull the front side only.

Cull the back side only.

Always cull any triangle.

Trait Implementations

impl Copy for FaceCullingMode
[src]

impl Clone for FaceCullingMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FaceCullingMode
[src]

Formats the value using the given formatter. Read more

impl Eq for FaceCullingMode
[src]

impl PartialEq for FaceCullingMode
[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