Type Alias rapier3d::geometry::PointProjection

source ·
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<3>>,
}

Fields§

§is_inside: bool

Whether or not the point to project was inside of the shape.

§point: OPoint<f32, Const<3>>

The projection result.