Removed pixels

Finished raytracer
Reimplementing imgui
This commit is contained in:
STP
2023-11-15 16:56:19 -05:00
parent 2e69164dde
commit 80fcc6c8bc
8 changed files with 1159 additions and 658 deletions

View File

@@ -2,16 +2,16 @@
#![allow(unused_imports)]
#![allow(unused_variables)]
//Use linear algebra module
use display::run;
use window::run;
//Cameras
mod camera;
mod display;
mod light;
mod primitive;
mod ray;
mod raytracer;
mod scene;
mod window;
// mod state;
// mod texture;
// mod vertex;
@@ -20,5 +20,5 @@ const EPSILON: f32 = 1e-7;
const INFINITY: f32 = 1e7;
fn main() {
run().expect("");
run().expect("YEY");
}