[][src]Enum ncollide3d::partitioning::BVHImpl

pub enum BVHImpl<'a, N: 'a + Real, T: 'a, BV: 'a> {
    BVT(&'a BVT<T, BV>),
    DBVT(&'a DBVT<N, T, BV>),
}

An enum grouping references to all the BVH implementations on ncollide.

Variants

BVT(&'a BVT<T, BV>)

A static binary bounding volume tree.

DBVT(&'a DBVT<N, T, BV>)

A dynamic binary bounding volume tree.

Methods

impl<'a, N: Real, T, BV> BVHImpl<'a, N, T, BV>[src]

pub fn unwrap_bvt(self) -> &'a BVT<T, BV>[src]

Gets the underlying reference to a BVT, or panics if this is not a BVTImpl::BVT.

pub fn unwrap_dbvt(self) -> &'a DBVT<N, T, BV>[src]

Gets the underlying reference to a DBVT, or panics if this is not a BVTImpl::DBVT.

pub fn visit(self, visitor: &mut impl Visitor<T, BV>)[src]

Traverses this tree using a visitor.

pub fn visit_bvtt<'b>(
    self,
    other: BVHImpl<'b, N, T, BV>,
    visitor: &mut impl SimultaneousVisitor<T, BV>
)
[src]

Visits the bounding volume traversal tree implicitly formed with other.

Performs a best-fist-search on the tree.

Returns the content of the leaf with the smallest associated cost, and a result of user-defined type.

Trait Implementations

impl<'a, N: Copy + 'a + Real, T: Copy + 'a, BV: Copy + 'a> Copy for BVHImpl<'a, N, T, BV>[src]

impl<'a, N: Clone + 'a + Real, T: Clone + 'a, BV: Clone + 'a> Clone for BVHImpl<'a, 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<'a, N, T, BV> Send for BVHImpl<'a, N, T, BV> where
    BV: Sync,
    N: Scalar,
    T: Sync

impl<'a, N, T, BV> Sync for BVHImpl<'a, 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