pub type Ray3f = Ray<f32, Vector3<f32>>;
Expand description
3D single-precision ray.
Aliased Type§
#[repr(C)]pub struct Ray3f {
pub start: Vector3<f32>,
pub direction: Vector3<f32>,
/* private fields */
}
Fields§
§start: Vector3<f32>
§direction: Vector3<f32>