Trait gfx_scene::Culler [] [src]

pub trait Culler<S: BaseFloat, B: Bound<S>> {
    fn init(&mut self);
    fn cull(&mut self, _: &B, _: &Matrix4<S>) -> Relation;
}

Generic bound culler.

Required Methods

Start a new culling session.

Cull a bound with a given transformation matrix.

Implementors