13 lines
178 B
Rust
13 lines
178 B
Rust
|
use crate::vec3::Vec3;
|
||
|
|
||
|
pub struct Rect {
|
||
|
pub upper_left: Vec3,
|
||
|
pub upper_right: Vec3,
|
||
|
pub lower_left: Vec3,
|
||
|
pub lower_right: Vec3,
|
||
|
}
|
||
|
|
||
|
pub fn compute_viewing_rect() {
|
||
|
|
||
|
}
|