Trait heron::rapier_plugin::rapier::ncollide::partitioning::BVH[][src]

pub trait BVH<T, BV> {
    type Node: Copy;
    pub fn root(&self) -> Option<Self::Node>;
pub fn num_children(&self, node: Self::Node) -> usize;
pub fn child(&self, i: usize, node: Self::Node) -> Self::Node;
pub fn content(&self, node: Self::Node) -> (&BV, Option<&T>); pub fn visit(&self, visitor: &mut impl Visitor<T, BV>) { ... }
pub fn visit_bvtt(
        &self,
        other: &impl BVH<T, BV>,
        visitor: &mut impl SimultaneousVisitor<T, BV>
    ) { ... }
pub fn best_first_search<N, BFS>(
        &self,
        visitor: &mut BFS
    ) -> Option<(Self::Node, <BFS as BestFirstVisitor<N, T, BV>>::Result)>
    where
        N: RealField,
        BFS: BestFirstVisitor<N, T, BV>
, { ... } }

Trait implemented by Bounding Volume Hierarchy.

Associated Types

type Node: Copy[src]

Type of a node identifiers on this BVH.

Loading content...

Required methods

pub fn root(&self) -> Option<Self::Node>[src]

The root of the BVH.

pub fn num_children(&self, node: Self::Node) -> usize[src]

The number of children of the given node.

pub fn child(&self, i: usize, node: Self::Node) -> Self::Node[src]

The i-th child of the given node.

pub fn content(&self, node: Self::Node) -> (&BV, Option<&T>)[src]

The bounding volume and data contained by the given node.

Loading content...

Provided methods

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

Traverses this BVH using a visitor.

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

Visits the bounding volume test tree implicitly formed with other.

Performs a best-first-search on the BVH.

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

Loading content...

Implementors

impl<'a, N, T, BV> BVH<T, BV> for DBVT<N, T, BV> where
    N: RealField
[src]

type Node = DBVTNodeId

impl<'a, T, BV> BVH<T, BV> for BVT<T, BV>[src]

type Node = BVTNodeId

Loading content...