Segment2d

Type Alias Segment2d 

Source
pub type Segment2d = Segment<f64, Vec2d>;
Expand description

2D double-precision line segment.

Aliased Type§

pub struct Segment2d {
    pub s: Vector2<f64>,
    pub e: Vector2<f64>,
    /* private fields */
}

Fields§

§s: Vector2<f64>

Start point.

§e: Vector2<f64>

End point.