[][src]Struct collision::Frustum

pub struct Frustum<S: BaseFloat> {
    pub left: Plane<S>,
    pub right: Plane<S>,
    pub bottom: Plane<S>,
    pub top: Plane<S>,
    pub near: Plane<S>,
    pub far: Plane<S>,
}

View frustum, used for frustum culling

Fields

left: Plane<S>

Left plane

right: Plane<S>

Right plane

bottom: Plane<S>

Bottom plane

top: Plane<S>

Top plane

near: Plane<S>

Near plane

far: Plane<S>

Far plane

Methods

impl<S: BaseFloat> Frustum<S>
[src]

pub fn new(
    left: Plane<S>,
    right: Plane<S>,
    bottom: Plane<S>,
    top: Plane<S>,
    near: Plane<S>,
    far: Plane<S>
) -> Frustum<S>
[src]

Construct a frustum.

pub fn from_matrix4(mat: Matrix4<S>) -> Option<Frustum<S>>
[src]

Extract frustum planes from a projection matrix.

pub fn contains<B: PlaneBound<S>>(&self, bound: &B) -> Relation
[src]

Find the spatial relation of a bound inside this frustum.

Trait Implementations

impl<S: Copy + BaseFloat> Copy for Frustum<S>
[src]

impl<S: PartialEq + BaseFloat> PartialEq<Frustum<S>> for Frustum<S>
[src]

impl<S: Clone + BaseFloat> Clone for Frustum<S>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S: Debug + BaseFloat> Debug for Frustum<S>
[src]

Auto Trait Implementations

impl<S> Send for Frustum<S> where
    S: Send

impl<S> Sync for Frustum<S> where
    S: Sync

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[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> 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.

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