Ray3f

Type Alias Ray3f 

Source
pub type Ray3f = Ray<f32, Vec3f>;
Expand description

3D single-precision ray.

Aliased Type§

pub struct Ray3f {
    pub start: Vector3<f32>,
    pub direction: Vector3<f32>,
    /* private fields */
}

Fields§

§start: Vector3<f32>

Ray origin.

§direction: Vector3<f32>

Ray direction (typically normalized).