[][src]Enum rust_3d::AABBTree3D

pub enum AABBTree3D<HB> where
    HB: HasBoundingBox3D + Clone
{ Empty, Leaf(AABBTree3DLeaf<HB>), Branch(AABBTree3DBranch<HB>), }

AABBTree3D, an axis aligned bounding box tree in 3D for fast collision detection

Variants

Empty
Leaf(AABBTree3DLeaf<HB>)
Branch(AABBTree3DBranch<HB>)

Implementations

impl<HB> AABBTree3D<HB> where
    HB: HasBoundingBox3D + Clone
[src]

pub fn new(data: Vec<HB>, maxdepth: usize, allowed_bucket_size: usize) -> Self[src]

pub fn any<'a>(&'a self, f: &dyn Fn(&HB) -> bool) -> bool[src]

pub fn for_each_intersection_candidate<'a>(
    &'a self,
    line: &Line3D,
    f: &mut dyn FnMut(&HB)
)
[src]

pub fn for_each_collision_candidate<'a>(
    &'a self,
    bb: &BoundingBox3D,
    f: &mut dyn FnMut(&HB)
)
[src]

pub fn bb_colliding<'a>(&'a self, bb: &BoundingBox3D, result: &mut Vec<&'a HB>)[src]

pub fn bb_crossing_x_value<'a>(&'a self, x: f64, result: &mut Vec<&'a HB>)[src]

pub fn bb_crossing_y_value<'a>(&'a self, y: f64, result: &mut Vec<&'a HB>)[src]

pub fn bb_crossing_z_value<'a>(&'a self, z: f64, result: &mut Vec<&'a HB>)[src]

Trait Implementations

impl<HB: Clone> Clone for AABBTree3D<HB> where
    HB: HasBoundingBox3D + Clone
[src]

impl<HB> IsColliderContainer3D for AABBTree3D<HB> where
    HB: Clone + HasColliders3D + Sized
[src]

Auto Trait Implementations

impl<HB> RefUnwindSafe for AABBTree3D<HB> where
    HB: RefUnwindSafe

impl<HB> Send for AABBTree3D<HB> where
    HB: Send

impl<HB> Sync for AABBTree3D<HB> where
    HB: Sync

impl<HB> Unpin for AABBTree3D<HB> where
    HB: Unpin

impl<HB> UnwindSafe for AABBTree3D<HB> where
    HB: UnwindSafe

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.