csci5607/assignment-1/src/view.rs

14 lines
195 B
Rust
Raw Normal View History

2023-01-31 07:38:03 +00:00
use crate::vec3::Vec3;
2023-01-31 19:50:23 +00:00
#[derive(Debug)]
2023-01-31 07:38:03 +00:00
pub struct Rect {
pub upper_left: Vec3,
pub upper_right: Vec3,
pub lower_left: Vec3,
pub lower_right: Vec3,
}
pub fn compute_viewing_rect() {
}