[][src]Struct building_blocks_mesh::greedy_quads::GreedyQuadsBuffer

pub struct GreedyQuadsBuffer<M> {
    pub quad_groups: [QuadGroup<M>; 6],
    // some fields omitted
}

Contains the output from the greedy_quads algorithm. Can be reused to avoid re-allocations.

Fields

quad_groups: [QuadGroup<M>; 6]

One group of quads per cube face.

Implementations

impl<M> GreedyQuadsBuffer<M>[src]

pub fn new(extent: Extent3i) -> Self[src]

pub fn reset(&mut self, extent: Extent3i)[src]

pub fn num_quads(&self) -> usize[src]

Returns the total count of quads across all groups.

Auto Trait Implementations

impl<M> RefUnwindSafe for GreedyQuadsBuffer<M> where
    M: RefUnwindSafe

impl<M> Send for GreedyQuadsBuffer<M> where
    M: Send

impl<M> Sync for GreedyQuadsBuffer<M> where
    M: Sync

impl<M> Unpin for GreedyQuadsBuffer<M> where
    M: Unpin

impl<M> UnwindSafe for GreedyQuadsBuffer<M> where
    M: UnwindSafe

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.