Struct heron::rapier_plugin::rapier::ncollide::pipeline::narrow_phase::InteractionGraph[][src]

pub struct InteractionGraph<N, Handle>(_)
where
    Handle: CollisionObjectHandle,
    N: RealField
;

A graph where nodes are collision objects and edges are contact or proximity algorithms.

Implementations

impl<N, Handle> InteractionGraph<N, Handle> where
    Handle: CollisionObjectHandle,
    N: RealField
[src]

pub fn new() -> InteractionGraph<N, Handle>[src]

Creates a new empty collection of collision objects.

pub fn add_node(&mut self, handle: Handle) -> NodeIndex<usize>[src]

Adds a handle to this graph.

#[must_use = "The graph index of the collision object returned by this method has been changed to `id`."]pub fn remove_node(&mut self, id: NodeIndex<usize>) -> Option<Handle>[src]

Removes a handle from this graph and returns a handle that must have its graph index changed to id.

When a node is removed, another node of the graph takes it place. This means that the CollisionObjectGraphIndex of the collision object returned by this method will be equal to id. Thus if you maintain a map between CollisionObjectSlabHandle and CollisionObjectGraphIndex, then you should update this map to associate id to the handle returned by this method. For example:

// Let `id` be the graph index of the collision object we want to remove.
if let Some(other_handle) = graph.remove_node(id) {
   // The graph index of `other_handle` changed to `id` due to the removal.
   map.insert(other_handle, id) ;
}

pub fn interaction_pairs(
    &self,
    effective_only: bool
) -> impl Iterator<Item = (Handle, Handle, &Interaction<N>)>
[src]

All the interactions pairs on this graph.

Refer to the official user guide for details.

pub fn contact_pairs(
    &self,
    effective_only: bool
) -> impl Iterator<Item = (Handle, Handle, &Box<dyn ContactManifoldGenerator<N> + 'static, Global>, &ContactManifold<N>)>
[src]

All the contact pairs on this graph.

Refer to the official user guide for details.

pub fn proximity_pairs(
    &self,
    effective_only: bool
) -> impl Iterator<Item = (Handle, Handle, &(dyn ProximityDetector<N> + 'static), Proximity)>
[src]

All the proximity pairs on this graph.

Refer to the official user guide for details.

pub fn interaction_pair(
    &self,
    id1: NodeIndex<usize>,
    id2: NodeIndex<usize>,
    effective_only: bool
) -> Option<(Handle, Handle, &Interaction<N>)>
[src]

The interaction between the two collision objects identified by their graph index.

Refer to the official user guide for details.

pub fn interaction_pair_mut(
    &mut self,
    id1: NodeIndex<usize>,
    id2: NodeIndex<usize>
) -> Option<(Handle, Handle, &mut Interaction<N>)>
[src]

The interaction between the two collision objects identified by their graph index.

Refer to the official user guide for details.

pub fn contact_pair(
    &self,
    id1: NodeIndex<usize>,
    id2: NodeIndex<usize>,
    effective_only: bool
) -> Option<(Handle, Handle, &Box<dyn ContactManifoldGenerator<N> + 'static, Global>, &ContactManifold<N>)>
[src]

The contact pair between the two collision objects identified by their graph index.

Refer to the official user guide for details.

pub fn proximity_pair(
    &self,
    id1: NodeIndex<usize>,
    id2: NodeIndex<usize>,
    effective_only: bool
) -> Option<(Handle, Handle, &(dyn ProximityDetector<N> + 'static), Proximity)>
[src]

The proximity pair between the two collision objects identified by their graph index.

Refer to the official user guide for details.

pub fn proximity_pair_mut(
    &mut self,
    id1: NodeIndex<usize>,
    id2: NodeIndex<usize>
) -> Option<(Handle, Handle, &mut (dyn ProximityDetector<N> + 'static), &mut Proximity)>
[src]

The proximity pair between the two collision objects identified by their graph index.

Refer to the official user guide for details.

pub fn interactions_with(
    &self,
    id: NodeIndex<usize>,
    effective_only: bool
) -> impl Iterator<Item = (Handle, Handle, &Interaction<N>)>
[src]

All the interaction involving the collision object with graph index id.

Refer to the official user guide for details.

pub fn index_interaction(
    &self,
    id: EdgeIndex<usize>
) -> Option<(Handle, Handle, &Interaction<N>)>
[src]

Gets the interaction with the given index.

pub fn interactions_with_mut(
    &mut self,
    id: NodeIndex<usize>
) -> impl Iterator<Item = (Handle, Handle, EdgeIndex<usize>, &mut Interaction<N>)>
[src]

All the mutable references to interactions involving the collision object with graph index id.

Refer to the official user guide for details.

pub fn proximities_with(
    &self,
    handle: NodeIndex<usize>,
    effective_only: bool
) -> impl Iterator<Item = (Handle, Handle, &(dyn ProximityDetector<N> + 'static), Proximity)>
[src]

All the proximity pairs involving the collision object with graph index id.

Refer to the official user guide for details.

pub fn contacts_with(
    &self,
    handle: NodeIndex<usize>,
    effective_only: bool
) -> impl Iterator<Item = (Handle, Handle, &Box<dyn ContactManifoldGenerator<N> + 'static, Global>, &ContactManifold<N>)>
[src]

All the contact pairs involving the collision object with graph index id.

Refer to the official user guide for details.

pub fn collision_objects_interacting_with(
    &'a self,
    id: NodeIndex<usize>
) -> impl Iterator<Item = Handle> + 'a
[src]

All the collision object handles of collision objects interacting with the collision object with graph index id.

Refer to the official user guide for details.

pub fn collision_objects_in_contact_with(
    &'a self,
    id: NodeIndex<usize>
) -> impl Iterator<Item = Handle> + 'a
[src]

All the collision object handles of collision objects in contact with the collision object with graph index id.

Refer to the official user guide for details.

pub fn collision_objects_in_proximity_of(
    &'a self,
    id: NodeIndex<usize>
) -> impl Iterator<Item = Handle> + 'a
[src]

All the collision object handles of collision objects in proximity of with the collision object with graph index id.

Refer to the official user guide for details.

Auto Trait Implementations

impl<N, Handle> !RefUnwindSafe for InteractionGraph<N, Handle>[src]

impl<N, Handle> Send for InteractionGraph<N, Handle>[src]

impl<N, Handle> Sync for InteractionGraph<N, Handle>[src]

impl<N, Handle> Unpin for InteractionGraph<N, Handle> where
    Handle: Unpin,
    N: Unpin
[src]

impl<N, Handle> !UnwindSafe for InteractionGraph<N, Handle>[src]

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Resource for T where
    T: 'static + Send + Sync

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,