Type Alias jumpy::core::physics::collisions::rapier::PointProjection
pub type PointProjection = PointProjection;Expand description
The projection of a point on a collider.
Aliased Type§
struct PointProjection {
pub is_inside: bool,
pub point: OPoint<f32, Const<2>>,
}Fields§
§is_inside: boolWhether or not the point to project was inside of the shape.
point: OPoint<f32, Const<2>>The projection result.