chore: Unused imports, use good bounds.

This commit is contained in:
2023-06-04 18:33:23 -05:00
parent 46640d39a1
commit 2a40258737
2 changed files with 6 additions and 11 deletions

View File

@@ -1,12 +1,7 @@
use crate::vec3::Vec3;
use crate::hittable::{
Hittable,
HitRecord,
};
#[derive(Copy)]
#[derive(Clone)]
#[derive(Copy, Clone)]
pub struct Ray{
pub orig: Vec3,
pub dir: Vec3,