Struct vek::geom::FrustumPlanes[][src]

pub struct FrustumPlanes<T> {
    pub left: T,
    pub right: T,
    pub bottom: T,
    pub top: T,
    pub near: T,
    pub far: T,
}

Data that represents distance offsets of frustum planes from an origin.

Fields

Trait Implementations

impl<T: Debug> Debug for FrustumPlanes<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Clone> Clone for FrustumPlanes<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy> Copy for FrustumPlanes<T>
[src]

impl<T: Hash> Hash for FrustumPlanes<T>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Eq> Eq for FrustumPlanes<T>
[src]

impl<T: PartialEq> PartialEq for FrustumPlanes<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<T> Send for FrustumPlanes<T> where
    T: Send

impl<T> Sync for FrustumPlanes<T> where
    T: Sync