[][src]Trait collision::HasBound

pub trait HasBound {
    type Bound: Bound;
    fn bound(&self) -> &Self::Bound;
}

Primitive with bounding volume

Associated Types

type Bound: Bound

Bounding volume type

Loading content...

Required methods

fn bound(&self) -> &Self::Bound

Borrow the bounding volume

Loading content...

Implementations on Foreign Types

impl<T> HasBound for (usize, T) where
    T: TreeValue,
    T::Bound: Bound
[src]

Make it possible to run broad phase algorithms directly on the value storage in DBVT

type Bound = T::Bound

impl<B, P> HasBound for (P, B) where
    P: Primitive,
    B: Bound
[src]

type Bound = B

Loading content...

Implementors

impl<V, B> HasBound for TreeValueWrapped<V, B> where
    B: Bound,
    <B::Point as EuclideanSpace>::Diff: Debug
[src]

type Bound = B

Loading content...