This commit is contained in:
STP
2023-12-03 22:13:26 -05:00
parent 0eff7fc694
commit 9276088b4b
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ use error_iter::ErrorIter;
const EPSILON: f64 = 1e-8; const EPSILON: f64 = 1e-8;
const INFINITY: f64 = 1e10; const INFINITY: f64 = 1e10;
use gui::{init_engine, Gui}; use gui::{init_engine};
use log::error; use log::error;
use nalgebra::Vector3; use nalgebra::Vector3;
use rand::random; use rand::random;

View File

@@ -1,7 +1,7 @@
use crate::{ use crate::{
bvh::AABB, bvh::AABB,
material::Material, material::Material,
primitive::{self, *}, primitive::{*},
ray::{Intersection, Ray}, ray::{Intersection, Ray},
}; };
use nalgebra::{Matrix4, Vector3}; use nalgebra::{Matrix4, Vector3};