Struct plane_split::LineProjection [] [src]

pub struct LineProjection<T> {
    pub markers: [T; 4],
}

The projection of a Polygon on a line.

Fields

Projected value of each point in the polygon.

Methods

impl<T> LineProjection<T> where
    T: Copy + PartialOrd + Sub<T, Output = T> + Add<T, Output = T>, 
[src]

[src]

Get the min/max of the line projection markers.

[src]

Check intersection with another line projection.

Trait Implementations

Auto Trait Implementations

impl<T> Send for LineProjection<T> where
    T: Send

impl<T> Sync for LineProjection<T> where
    T: Sync