[−][src]Struct ncollide3d::partitioning::BVT
A Bounding Volume Tree.
Methods
impl<T, BV> BVT<T, BV>
[src][−]
pub fn new_with_partitioning<F: FnMut(usize, Vec<(T, BV)>) -> (BV, BinaryPartition<T, BV>)>(
elements: Vec<(T, BV)>,
partitioning: &mut F
) -> BVT<T, BV>
[src][−]
elements: Vec<(T, BV)>,
partitioning: &mut F
) -> BVT<T, BV>
please use from_partitioning
instead
Builds a bounding volume tree using the specified partitioning function.
pub fn from_partitioning(
elements: Vec<(T, BV)>,
partitioning: &mut impl FnMut(usize, Vec<(T, BV)>) -> (BV, BinaryPartition<T, BV>)
) -> BVT<T, BV>
[src][−]
elements: Vec<(T, BV)>,
partitioning: &mut impl FnMut(usize, Vec<(T, BV)>) -> (BV, BinaryPartition<T, BV>)
) -> BVT<T, BV>
Builds a bounding volume tree using the specified partitioning function.
pub fn leaves(&self) -> &[BVTLeaf<T, BV>]
[src][−]
The set of leaves on this BVT.
pub fn leaf(&self, i: usize) -> &BVTLeaf<T, BV>
[src][−]
Referenceto the i-th leaf of this BVT.
pub fn root_bounding_volume(&self) -> Option<&BV>
[src][−]
Reference to the bounding volume of the tree root.
pub fn set_leaf_bounding_volume<N: RealField>(
&mut self,
i: usize,
bv: BV,
refit_now: bool
) where
BV: BoundingVolume<N>,
[src][−]
&mut self,
i: usize,
bv: BV,
refit_now: bool
) where
BV: BoundingVolume<N>,
Set the bounding volume of the i-th leaf.
If refit_now
is true
, the bounding volumes of all the ancestors of the
modifiad leaf will be updated as well to enclose the new leaf bounding volume.
If refit_now
is false
, no ancestor update will be performed until the
.refit()
method is called. This is useful to refit the tree only once after
several leaf bounding volume modifications.
pub fn refit<N: RealField>(&mut self, margin: N) where
BV: BoundingVolume<N>,
[src][−]
BV: BoundingVolume<N>,
Refits the bounding volumes so that all node of the BVT have boundin volumes that enclose their children.
This must be called to ensure the BVT is in a valid state after several calls to
.set_leaf_bounding_volume(_, _, false)
.
Every bounding volume created during this update will be enlarged by a margin of margin
.
The larger this margin here, the looser will the resulting AABB will be, but the less frequent
future updates will be necessary.
Setting a margin equal to 0.0 is allowed.
impl<T, BV> BVT<T, BV>
[src][−]
pub fn new_balanced<N>(leaves: Vec<(T, BV)>) -> BVT<T, BV> where
N: RealField,
BV: BoundingVolume<N> + Clone,
[src][−]
N: RealField,
BV: BoundingVolume<N> + Clone,
Creates a balanced BVT
.
pub fn median_partitioning_with_centers<N, F: FnMut(&T, &BV) -> Point<N>>(
depth: usize,
leaves: Vec<(T, BV)>,
center: &mut F
) -> (BV, BinaryPartition<T, BV>) where
N: RealField,
BV: BoundingVolume<N> + Clone,
[src][−]
depth: usize,
leaves: Vec<(T, BV)>,
center: &mut F
) -> (BV, BinaryPartition<T, BV>) where
N: RealField,
BV: BoundingVolume<N> + Clone,
Construction function for a kdree to be used with BVT::from_partitioning
.
pub fn median_partitioning<N>(
depth: usize,
leaves: Vec<(T, BV)>
) -> (BV, BinaryPartition<T, BV>) where
N: RealField,
BV: BoundingVolume<N> + Clone,
[src][−]
depth: usize,
leaves: Vec<(T, BV)>
) -> (BV, BinaryPartition<T, BV>) where
N: RealField,
BV: BoundingVolume<N> + Clone,
Construction function for a kdree to be used with BVT::from_partitioning
.
Trait Implementations
impl<'a, T, BV> BVH<T, BV> for BVT<T, BV>
[src][+]
impl<T: Clone, BV: Clone> Clone for BVT<T, BV>
[src][+]
Auto Trait Implementations
impl<T, BV> RefUnwindSafe for BVT<T, BV> where
BV: RefUnwindSafe,
T: RefUnwindSafe,
BV: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, BV> Send for BVT<T, BV> where
BV: Send,
T: Send,
BV: Send,
T: Send,
impl<T, BV> Sync for BVT<T, BV> where
BV: Sync,
T: Sync,
BV: Sync,
T: Sync,
impl<T, BV> Unpin for BVT<T, BV> where
BV: Unpin,
T: Unpin,
BV: Unpin,
T: Unpin,
impl<T, BV> UnwindSafe for BVT<T, BV> where
BV: UnwindSafe,
T: UnwindSafe,
BV: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Downcast for T where
T: Any,
[+]
T: Any,
impl<T> DowncastSync for T where
T: Send + Sync + Any,
[+]
T: Send + Sync + Any,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[+]
SS: SubsetOf<SP>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[+]
V: MultiLane<T>,