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