1 2 3 4 5 6 7 8
//! This module holds the [`Ray`] definition, and `RayIntersection` functions. mod intersect_default; mod ray_impl; #[cfg(feature = "simd")] mod intersect_simd; pub use self::ray_impl::*;