1use cgmath::Vector3; 2 3pub struct Ray { 4 pub from: Vector3<f32>, 5 pub to: Vector3<f32>, 6 pub direction: Vector3<f32>, 7}