Line3d

Type Alias Line3d 

Source
pub type Line3d = Line<f64, Vec3d>;
Expand description

3D double-precision line.

Aliased Type§

pub struct Line3d {
    pub p: Vector3<f64>,
    pub d: Vector3<f64>,
    /* private fields */
}

Fields§

§p: Vector3<f64>

Point on the line.

§d: Vector3<f64>

Direction of the line.