aboutsummaryrefslogtreecommitdiff
path: root/src/core/ray.rs
blob: 54af639cde13baa5989cf81200f0b15c1c459e8b (plain)
1
2
3
4
5
6
7
use crate::core::Vector3f;

pub struct Ray {
    pub origin: Vector3f,
    pub direction: Vector3f,
}