pub struct ContactModificationContext<'a> {
pub bodies: &'a RigidBodySet,
pub colliders: &'a ColliderSet,
pub collider1: ColliderHandle,
pub collider2: ColliderHandle,
pub rigid_body1: Option<RigidBodyHandle>,
pub rigid_body2: Option<RigidBodyHandle>,
pub manifold: &'a ContactManifold,
pub solver_contacts: &'a mut Vec<SolverContact>,
pub normal: &'a mut Vector<f32>,
pub user_data: &'a mut u32,
}
Expand description
Context given to custom contact modifiers to modify the contacts seen by the constraints solver.
Fields§
§bodies: &'a RigidBodySet
The set of rigid-bodies.
colliders: &'a ColliderSet
The set of colliders.
collider1: ColliderHandle
The handle of the first collider involved in the potential collision.
collider2: ColliderHandle
The handle of the first collider involved in the potential collision.
rigid_body1: Option<RigidBodyHandle>
The handle of the first body involved in the potential collision.
rigid_body2: Option<RigidBodyHandle>
The handle of the first body involved in the potential collision.
manifold: &'a ContactManifold
The contact manifold.
solver_contacts: &'a mut Vec<SolverContact>
The solver contacts that can be modified.
normal: &'a mut Vector<f32>
The contact normal that can be modified.
user_data: &'a mut u32
User-defined data attached to the manifold.
Implementations§
Source§impl ContactModificationContext<'_>
impl ContactModificationContext<'_>
Sourcepub fn update_as_oneway_platform(
&mut self,
allowed_local_n1: &Vector<f32>,
allowed_angle: f32,
)
pub fn update_as_oneway_platform( &mut self, allowed_local_n1: &Vector<f32>, allowed_angle: f32, )
Helper function to update self
to emulate a oneway-platform.
The “oneway” behavior will only allow contacts between two colliders
if the local contact normal of the first collider involved in the contact
is almost aligned with the provided allowed_local_n1
direction.
To make this method work properly it must be called as part of the
PhysicsHooks::modify_solver_contacts
method at each timestep, for each
contact manifold involving a one-way platform. The self.user_data
field
must not be modified from the outside of this method.
Auto Trait Implementations§
impl<'a> Freeze for ContactModificationContext<'a>
impl<'a> !RefUnwindSafe for ContactModificationContext<'a>
impl<'a> Send for ContactModificationContext<'a>
impl<'a> Sync for ContactModificationContext<'a>
impl<'a> Unpin for ContactModificationContext<'a>
impl<'a> !UnwindSafe for ContactModificationContext<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.