pub enum FaceCullingOrder {
CW,
CCW,
}Expand description
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§
Trait Implementations§
Source§impl Clone for FaceCullingOrder
impl Clone for FaceCullingOrder
Source§fn clone(&self) -> FaceCullingOrder
fn clone(&self) -> FaceCullingOrder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FaceCullingOrder
impl Debug for FaceCullingOrder
Source§impl PartialEq for FaceCullingOrder
impl PartialEq for FaceCullingOrder
impl Copy for FaceCullingOrder
impl Eq for FaceCullingOrder
impl StructuralPartialEq for FaceCullingOrder
Auto Trait Implementations§
impl Freeze for FaceCullingOrder
impl RefUnwindSafe for FaceCullingOrder
impl Send for FaceCullingOrder
impl Sync for FaceCullingOrder
impl Unpin for FaceCullingOrder
impl UnwindSafe for FaceCullingOrder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more