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

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 = &'a mut D

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

Auto Trait Implementations

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.