[][src]Struct ncollide3d::partitioning::DBVTLeaf

pub struct DBVTLeaf<N: Real, T, BV> {
    pub bounding_volume: BV,
    pub center: Point<N>,
    pub data: T,
    // some fields omitted
}

Leaf of a Dynamic Bounding Volume Tree.

Fields

bounding_volume: BV

The bounding volume of this node.

center: Point<N>

The center of this node bounding volume.

data: T

An user-defined data.

Methods

impl<N: Real, T, BV: BoundingVolume<N>> DBVTLeaf<N, T, BV>[src]

pub fn new(bounding_volume: BV, data: T) -> DBVTLeaf<N, T, BV>[src]

Creates a new DBVT leaf from its bounding volume and contained data.

pub fn is_root(&self) -> bool[src]

Returns true if this leaf is the root of the tree, or if it detached from any tree.

Trait Implementations

impl<N: Clone + Real, T: Clone, BV: Clone> Clone for DBVTLeaf<N, T, BV>[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<N, T, BV> Send for DBVTLeaf<N, T, BV> where
    BV: Send,
    N: Scalar,
    T: Send

impl<N, T, BV> Sync for DBVTLeaf<N, T, BV> where
    BV: Sync,
    N: Scalar,
    T: Sync

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> Same for T

type Output = T

Should always be Self