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}, hitable::{Hit, HitRecord},
material::Lambertian, material::Lambertian,
ray::Ray, ray::Ray,
texture::{self, ConstantTexture},
vec3::Vec3,
}; };
#[derive(Debug)] #[derive(Debug)]

View File

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

View File

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