Struct heron::rapier_plugin::rapier::geometry::InteractionGraph[]

pub struct InteractionGraph<N, E> { /* fields omitted */ }

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

Implementations

impl<N, E> InteractionGraph<N, E> where
    N: Copy

pub fn new() -> InteractionGraph<N, E>

Creates a new empty collection of collision objects.

pub fn raw_graph(&self) -> &Graph<N, E>

The underlying raw graph structure of this interaction graph.

pub fn interactions(&self) -> impl Iterator<Item = &E>

All the interactions on this graph.

pub fn interactions_with_endpoints(&self) -> impl Iterator<Item = (N, N, &E)>

All the interactions on this graph with the corresponding endpoint weights.

pub fn interaction_pair(
    &self,
    id1: NodeIndex,
    id2: NodeIndex
) -> Option<(N, N, &E)>

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

pub fn interaction_pair_mut(
    &mut self,
    id1: NodeIndex,
    id2: NodeIndex
) -> Option<(N, N, &mut E)>

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

pub fn interactions_with(
    &self,
    id: NodeIndex
) -> impl Iterator<Item = (N, N, &E)>

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

pub fn index_interaction(&self, id: EdgeIndex) -> Option<(N, N, &E)>

Gets the interaction with the given index.

pub fn interactions_with_mut(
    &mut self,
    id: NodeIndex
) -> impl Iterator<Item = (N, N, EdgeIndex, &mut E)>

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

Trait Implementations

impl<N, E> Clone for InteractionGraph<N, E> where
    N: Clone,
    E: Clone

Auto Trait Implementations

impl<N, E> RefUnwindSafe for InteractionGraph<N, E> where
    E: RefUnwindSafe,
    N: RefUnwindSafe

impl<N, E> Send for InteractionGraph<N, E> where
    E: Send,
    N: Send

impl<N, E> Sync for InteractionGraph<N, E> where
    E: Sync,
    N: Sync

impl<N, E> Unpin for InteractionGraph<N, E> where
    E: Unpin,
    N: Unpin

impl<N, E> UnwindSafe for InteractionGraph<N, E> where
    E: UnwindSafe,
    N: UnwindSafe

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> CloneAny for T where
    T: Any + Clone

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

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

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

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> Same<T> for T

type Output = T

Should always be Self

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

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.

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

impl<T> Upcast<T> for T

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