Line

Type Alias Line 

Source
pub type Line = Line<f32>;
Expand description

A line segment of finite length, determined by a starting point and an ending point.

Aliased Type§

pub struct Line {
    pub s: Point<f32>,
    pub e: Point<f32>,
}

Fields§

§s: Point<f32>

Start points of the lines segment.

§e: Point<f32>

End points of the lines segment.