pub struct RapierQueryPipeline {
pub query_pipeline: QueryPipeline,
}
Expand description
The query pipeline, which performs scene queries (ray-casting, point projection, etc.)
This should be attached on an entity with a RapierContext
Fields§
§query_pipeline: QueryPipeline
The query pipeline, which performs scene queries (ray-casting, point projection, etc.)
Implementations§
Source§impl RapierQueryPipeline
impl RapierQueryPipeline
Sourcepub fn update_query_pipeline(&mut self, colliders: &RapierContextColliders)
pub fn update_query_pipeline(&mut self, colliders: &RapierContextColliders)
Updates the state of the query pipeline, based on the collider positions known
from the last timestep or the last call to self.propagate_modified_body_positions_to_colliders()
.
Sourcepub fn cast_ray(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
ray_origin: Vect,
ray_dir: Vect,
max_toi: f32,
solid: bool,
filter: QueryFilter<'_>,
) -> Option<(Entity, f32)>
pub fn cast_ray( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, ray_origin: Vect, ray_dir: Vect, max_toi: f32, solid: bool, filter: QueryFilter<'_>, ) -> Option<(Entity, f32)>
Find the closest intersection between a ray and a set of collider.
§Parameters
ray_origin
: the starting point of the ray to cast.ray_dir
: the direction of the ray to cast.max_toi
: the maximum time-of-impact that can be reported by this cast. This effectively limits the length of the ray toray.dir.norm() * max_toi
. UseReal::MAX
for an unbounded ray.solid
: if this istrue
an impact at time 0.0 (i.e. at the ray origin) is returned if it starts inside of a shape. If thisfalse
then the ray will hit the shape’s boundary even if its starts inside of it.filter
: set of rules used to determine which collider is taken into account by this scene query.
Sourcepub fn cast_ray_and_get_normal(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
ray_origin: Vect,
ray_dir: Vect,
max_toi: f32,
solid: bool,
filter: QueryFilter<'_>,
) -> Option<(Entity, RayIntersection)>
pub fn cast_ray_and_get_normal( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, ray_origin: Vect, ray_dir: Vect, max_toi: f32, solid: bool, filter: QueryFilter<'_>, ) -> Option<(Entity, RayIntersection)>
Find the closest intersection between a ray and a set of collider.
§Parameters
ray_origin
: the starting point of the ray to cast.ray_dir
: the direction of the ray to cast.max_toi
: the maximum time-of-impact that can be reported by this cast. This effectively limits the length of the ray toray.dir.norm() * max_toi
. UseReal::MAX
for an unbounded ray.solid
: if this istrue
an impact at time 0.0 (i.e. at the ray origin) is returned if it starts inside of a shape. If thisfalse
then the ray will hit the shape’s boundary even if its starts inside of it.filter
: set of rules used to determine which collider is taken into account by this scene query.
Sourcepub fn intersections_with_ray(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
ray_origin: Vect,
ray_dir: Vect,
max_toi: f32,
solid: bool,
filter: QueryFilter<'_>,
callback: impl FnMut(Entity, RayIntersection) -> bool,
)
pub fn intersections_with_ray( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, ray_origin: Vect, ray_dir: Vect, max_toi: f32, solid: bool, filter: QueryFilter<'_>, callback: impl FnMut(Entity, RayIntersection) -> bool, )
Find the all intersections between a ray and a set of collider and passes them to a callback.
§Parameters
ray_origin
: the starting point of the ray to cast.ray_dir
: the direction of the ray to cast.max_toi
: the maximum time-of-impact that can be reported by this cast. This effectively limits the length of the ray toray.dir.norm() * max_toi
. UseReal::MAX
for an unbounded ray.solid
: if this istrue
an impact at time 0.0 (i.e. at the ray origin) is returned if it starts inside of a shape. If thisfalse
then the ray will hit the shape’s boundary even if its starts inside of it.filter
: set of rules used to determine which collider is taken into account by this scene query.callback
: function executed on each collider for which a ray intersection has been found. There is no guarantees on the order the results will be yielded. If this callback returnsfalse
, this method will exit early, ignore any further raycast.
Sourcepub fn intersection_with_shape(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
shape_pos: Vect,
shape_rot: Rot,
shape: &Collider,
filter: QueryFilter<'_>,
) -> Option<Entity>
pub fn intersection_with_shape( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, shape_pos: Vect, shape_rot: Rot, shape: &Collider, filter: QueryFilter<'_>, ) -> Option<Entity>
Gets the handle of up to one collider intersecting the given shape.
§Parameters
shape_pos
- The position of the shape used for the intersection test.shape
- The shape used for the intersection test.filter
: set of rules used to determine which collider is taken into account by this scene query.
Sourcepub fn project_point(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
point: Vect,
solid: bool,
filter: QueryFilter<'_>,
) -> Option<(Entity, PointProjection)>
pub fn project_point( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, point: Vect, solid: bool, filter: QueryFilter<'_>, ) -> Option<(Entity, PointProjection)>
Find the projection of a point on the closest collider.
§Parameters
point
- The point to project.solid
- If this is set totrue
then the collider shapes are considered to be plain (if the point is located inside of a plain shape, its projection is the point itself). If it is set tofalse
the collider shapes are considered to be hollow (if the point is located inside of an hollow shape, it is projected on the shape’s boundary).filter
: set of rules used to determine which collider is taken into account by this scene query.
Sourcepub fn intersections_with_point(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
point: Vect,
filter: QueryFilter<'_>,
callback: impl FnMut(Entity) -> bool,
)
pub fn intersections_with_point( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, point: Vect, filter: QueryFilter<'_>, callback: impl FnMut(Entity) -> bool, )
Find all the colliders containing the given point.
§Parameters
point
- The point used for the containment test.filter
: set of rules used to determine which collider is taken into account by this scene query.callback
- A function called with each collider with a shape containing thepoint
. If this callback returnsfalse
, this method will exit early, ignore any further point projection.
Sourcepub fn project_point_and_get_feature(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
point: Vect,
filter: QueryFilter<'_>,
) -> Option<(Entity, PointProjection, FeatureId)>
pub fn project_point_and_get_feature( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, point: Vect, filter: QueryFilter<'_>, ) -> Option<(Entity, PointProjection, FeatureId)>
Find the projection of a point on the closest collider.
The results include the ID of the feature hit by the point.
§Parameters
point
- The point to project.solid
- If this is set totrue
then the collider shapes are considered to be plain (if the point is located inside of a plain shape, its projection is the point itself). If it is set tofalse
the collider shapes are considered to be hollow (if the point is located inside of an hollow shape, it is projected on the shape’s boundary).filter
: set of rules used to determine which collider is taken into account by this scene query.
Sourcepub fn colliders_with_aabb_intersecting_aabb(
&self,
rapier_colliders: &RapierContextColliders,
aabb: Aabb3d,
callback: impl FnMut(Entity) -> bool,
)
pub fn colliders_with_aabb_intersecting_aabb( &self, rapier_colliders: &RapierContextColliders, aabb: Aabb3d, callback: impl FnMut(Entity) -> bool, )
Finds all entities of all the colliders with an Aabb intersecting the given Aabb.
Sourcepub fn cast_shape(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
shape_pos: Vect,
shape_rot: Rot,
shape_vel: Vect,
shape: &Collider,
options: ShapeCastOptions,
filter: QueryFilter<'_>,
) -> Option<(Entity, ShapeCastHit)>
pub fn cast_shape( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, shape_pos: Vect, shape_rot: Rot, shape_vel: Vect, shape: &Collider, options: ShapeCastOptions, filter: QueryFilter<'_>, ) -> Option<(Entity, ShapeCastHit)>
Casts a shape at a constant linear velocity and retrieve the first collider it hits.
This is similar to ray-casting except that we are casting a whole shape instead of just a
point (the ray origin). In the resulting ShapeCastHit
, witness and normal 1 refer to the world
collider, and are in world space.
§Parameters
shape_pos
- The initial translation of the shape to cast.shape_rot
- The rotation of the shape to cast.shape_vel
- The constant velocity of the shape to cast (i.e. the cast direction).shape
- The shape to cast.max_toi
- The maximum time-of-impact that can be reported by this cast. This effectively limits the distance traveled by the shape toshape_vel.norm() * maxToi
.stop_at_penetration
- If the casted shape starts in a penetration state with any collider, two results are possible. Ifstop_at_penetration
istrue
then, the result will have atoi
equal tostart_time
. Ifstop_at_penetration
isfalse
then the nonlinear shape-casting will see if further motion wrt. the penetration normal would result in tunnelling. If it does not (i.e. we have a separating velocity along that normal) then the nonlinear shape-casting will attempt to find another impact, at a time> start_time
that could result in tunnelling.filter
: set of rules used to determine which collider is taken into account by this scene query.
Sourcepub fn intersections_with_shape(
&self,
rapier_colliders: &RapierContextColliders,
rigidbody_set: &RapierRigidBodySet,
shape_pos: Vect,
shape_rot: Rot,
shape: &Collider,
filter: QueryFilter<'_>,
callback: impl FnMut(Entity) -> bool,
)
pub fn intersections_with_shape( &self, rapier_colliders: &RapierContextColliders, rigidbody_set: &RapierRigidBodySet, shape_pos: Vect, shape_rot: Rot, shape: &Collider, filter: QueryFilter<'_>, callback: impl FnMut(Entity) -> bool, )
Retrieve all the colliders intersecting the given shape.
§Parameters
shapePos
- The position of the shape to test.shapeRot
- The orientation of the shape to test.shape
- The shape to test.filter
: set of rules used to determine which collider is taken into account by this scene query.callback
- A function called with the entities of each collider intersecting theshape
.
Sourcepub fn with_query_filter_elts<T>(
entity2collider: &HashMap<Entity, ColliderHandle>,
entity2body: &HashMap<Entity, RigidBodyHandle>,
colliders: &ColliderSet,
filter: QueryFilter<'_>,
f: impl FnOnce(RapierQueryFilter<'_>) -> T,
) -> T
pub fn with_query_filter_elts<T>( entity2collider: &HashMap<Entity, ColliderHandle>, entity2body: &HashMap<Entity, RigidBodyHandle>, colliders: &ColliderSet, filter: QueryFilter<'_>, f: impl FnOnce(RapierQueryFilter<'_>) -> T, ) -> T
Without borrowing the RapierContext
, calls the closure f
once
after converting the given QueryFilter
into a raw RapierQueryFilter
.
Trait Implementations§
Source§impl Clone for RapierQueryPipeline
impl Clone for RapierQueryPipeline
Source§fn clone(&self) -> RapierQueryPipeline
fn clone(&self) -> RapierQueryPipeline
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Component for RapierQueryPipeline
impl Component for RapierQueryPipeline
Source§const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
Source§fn register_required_components(
requiree: ComponentId,
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
inheritance_depth: u16,
)
fn register_required_components( requiree: ComponentId, components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, inheritance_depth: u16, )
Source§fn register_component_hooks(hooks: &mut ComponentHooks)
fn register_component_hooks(hooks: &mut ComponentHooks)
ComponentHooks
.Source§impl Default for RapierQueryPipeline
impl Default for RapierQueryPipeline
Source§fn default() -> RapierQueryPipeline
fn default() -> RapierQueryPipeline
Auto Trait Implementations§
impl Freeze for RapierQueryPipeline
impl !RefUnwindSafe for RapierQueryPipeline
impl Send for RapierQueryPipeline
impl Sync for RapierQueryPipeline
impl Unpin for RapierQueryPipeline
impl !UnwindSafe for RapierQueryPipeline
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId), )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
Source§fn register_required_components(
components: &mut Components,
storages: &mut Storages,
required_components: &mut RequiredComponents,
)
fn register_required_components( components: &mut Components, storages: &mut Storages, required_components: &mut RequiredComponents, )
Bundle
.Source§fn get_component_ids(
components: &Components,
ids: &mut impl FnMut(Option<ComponentId>),
)
fn get_component_ids( components: &Components, ids: &mut impl FnMut(Option<ComponentId>), )
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates Self
using default()
.
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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.