pub fn ray_aabb_intersect( ray: &Ray, aabb_min: [f32; 3], aabb_max: [f32; 3], ) -> bool
Test ray–AABB intersection using the slab method.
Returns true if the ray hits the box [aabb_min, aabb_max].
true
[aabb_min, aabb_max]