Trait collision::HasBound [] [src]

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

Primitive with bounding volume

Associated Types

Bounding volume type

Required Methods

Borrow the bounding volume

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

[src]

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

[src]

Implementors