usecrate::Ray;/// Intersector for BVH and nodes intersection.
pubtraitIntersector{/// Intersect this instance with a ray.
////// [`Ray::hit`] is mutated with the intersection data.
////// Returns the number of steps (A.K.A intersections) performed.
fnintersect(&self, ray:&mut Ray)->u32;}