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