pub type RayHitF = RayHit<f32>;
#[repr(C)]pub struct RayHitF { pub normal: Vec2<f32>, pub distance: f32, }
normal: Vec2<f32>
distance: f32