rsrt_cpu/src/ray.rs

6 lines
104 B
Rust
Raw Normal View History

2020-12-12 13:27:36 +00:00
#[derive(Clone, Copy, Debug)]
2020-12-10 20:38:07 +00:00
pub struct Ray {
2020-12-11 16:11:39 +00:00
pub origin: [f64; 3],
pub direction: [f64; 3],
2020-12-10 20:38:07 +00:00
}