Line3f

Type Alias Line3f 

Source
pub type Line3f = Line<f32, Vec3f>;
Expand description

3D single-precision line.

Aliased Type§

pub struct Line3f {
    pub p: Vector3<f32>,
    pub d: Vector3<f32>,
    /* private fields */
}

Fields§

§p: Vector3<f32>

Point on the line.

§d: Vector3<f32>

Direction of the line.