Struct euc::rasterizer::Triangles[][src]

pub struct Triangles<'a, D, B: BackfaceMode = BackfaceCullingEnabled> { /* fields omitted */ }

A rasterizer that produces filled triangles from groups of 3 consecutive vertices.

Use the BackfaceCullingEnabled type parameter to enable backface culling. Use the BackfaceCullingDisabled type parameter to disable backface culling.

Trait Implementations

impl<'a, D: Target<Item = f32>, B: BackfaceMode> Rasterizer for Triangles<'a, D, B>[src]

type Input = [f32; 3]

The type of input required during rasterization. Read more

type Supplement = Option<&'a mut D>

The type of any supplementary data required by the rasterization algorithm. Read more

Auto Trait Implementations

impl<'a, D, B> RefUnwindSafe for Triangles<'a, D, B> where
    B: RefUnwindSafe,
    D: RefUnwindSafe

impl<'a, D, B> Send for Triangles<'a, D, B> where
    B: Send,
    D: Sync

impl<'a, D, B> Sync for Triangles<'a, D, B> where
    B: Sync,
    D: Sync

impl<'a, D, B> Unpin for Triangles<'a, D, B> where
    B: Unpin

impl<'a, D, B> UnwindSafe for Triangles<'a, D, B> where
    B: UnwindSafe,
    D: RefUnwindSafe

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, 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.