rtiow: lint.

This commit is contained in:
Bill Thiede 2023-02-15 15:45:08 -08:00
parent 23bc5b0bf0
commit 6fbdb49ce1
3 changed files with 1 additions and 5 deletions

View File

@ -3,8 +3,6 @@ use crate::{
hitable::{Hit, HitRecord},
material::Lambertian,
ray::Ray,
texture::{self, ConstantTexture},
vec3::Vec3,
};
#[derive(Debug)]

View File

@ -2,7 +2,6 @@ use crate::{
aabb::AABB,
hitable::{Hit, HitRecord},
ray::Ray,
vec3::Vec3,
};
#[derive(Debug)]

View File

@ -1,7 +1,6 @@
use std::{
f32::consts::PI,
io::{BufReader, Cursor},
iter::Inspect,
};
use stl::STL;
@ -13,7 +12,7 @@ use crate::{
hitable::Hit,
hitable_list::HitableList,
kdtree::KDTree,
material::{Dielectric, Lambertian, Metal},
material::{Lambertian, Metal},
renderer::{Opt, Scene},
rotate::RotateY,
scale::Scale,