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

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