rtiow: fix unused-imports build errors.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bill Thiede 2019-12-23 15:47:11 -08:00
parent 0249ac6db9
commit a227d54705
2 changed files with 0 additions and 5 deletions

View File

@ -1,5 +1,3 @@
use warp;
fn main() { fn main() {
println!("Hello, world!"); println!("Hello, world!");
} }

View File

@ -1,20 +1,17 @@
use crate::camera::Camera; use crate::camera::Camera;
use crate::hitable::Hit; use crate::hitable::Hit;
use crate::hitable_list::HitableList; use crate::hitable_list::HitableList;
use crate::kdtree::KDTree;
use crate::material::Dielectric; use crate::material::Dielectric;
use crate::material::Lambertian; use crate::material::Lambertian;
use crate::material::Metal; use crate::material::Metal;
use crate::moving_sphere::MovingSphere; use crate::moving_sphere::MovingSphere;
use crate::rect::XYRect; use crate::rect::XYRect;
use crate::rect::XZRect;
use crate::renderer::Opt; use crate::renderer::Opt;
use crate::renderer::Scene; use crate::renderer::Scene;
use crate::sphere::Sphere; use crate::sphere::Sphere;
use crate::texture::CheckerTexture; use crate::texture::CheckerTexture;
use crate::texture::ConstantTexture; use crate::texture::ConstantTexture;
use crate::texture::EnvMap; use crate::texture::EnvMap;
use crate::texture::Texture;
use crate::vec3::Vec3; use crate::vec3::Vec3;
// Draws many spheres along each positive axis. // Draws many spheres along each positive axis.