Enum ncollide_geometry::query::SegmentPointLocation [] [src]

pub enum SegmentPointLocation<N: Real> {
    OnVertex(usize),
    OnEdge(usize[N; 2]),
    OnSolid,
}

Logical description of the location of a point on a triangle.

Variants

The point lies on a vertex.

The point lies on the segment interior.

The point lies on the segment interior (for "solid" point queries).

Trait Implementations

Auto Trait Implementations

impl<N> Send for SegmentPointLocation<N>

impl<N> Sync for SegmentPointLocation<N>