Struct ncollide_geometry::query::PointProjection [] [src]

pub struct PointProjection<P: Point> {
    pub is_inside: bool,
    pub point: P,
}

Description of the projection of a point on a shape.

Fields

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

The projection result.

Methods

impl<P: Point> PointProjection<P>
[src]

[src]

Initializes a new PointProjection.

Trait Implementations

impl<P: Copy + Point> Copy for PointProjection<P>
[src]

impl<P: Clone + Point> Clone for PointProjection<P>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<P: Debug + Point> Debug for PointProjection<P>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<P> Send for PointProjection<P>

impl<P> Sync for PointProjection<P>