Enum gfx::state::FrontFace []

pub enum FrontFace {
    Clockwise,
    CounterClockwise,
}

The front face winding order of a set of vertices.

Variants

Clockwise

Clockwise winding order.

CounterClockwise

Counter-clockwise winding order.

Trait Implementations

impl Debug for FrontFace

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Clone for FrontFace

fn clone(&self) -> FrontFace

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for FrontFace

impl Hash for FrontFace

fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher

impl PartialOrd<FrontFace> for FrontFace

fn partial_cmp(&self, __arg_0: &FrontFace) -> Option<Ordering>

impl PartialEq<FrontFace> for FrontFace

fn eq(&self, __arg_0: &FrontFace) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Ord for FrontFace

fn cmp(&self, __arg_0: &FrontFace) -> Ordering

impl Eq for FrontFace