pub type Line2d = Line<f64, Vec2d>;Expand description
2D double-precision line.
Aliased Type§
pub struct Line2d {
pub p: Vector2<f64>,
pub d: Vector2<f64>,
/* private fields */
}Fields§
§p: Vector2<f64>Point on the line.
d: Vector2<f64>Direction of the line.