Files
rust-raytracer/src/main.rs
2023-11-12 02:06:46 -05:00

20 lines
276 B
Rust

#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(unused_variables)]
//Use linear algebra module
use state::run;
//Cameras
mod camera;
mod primitive;
mod ray;
mod state;
mod texture;
mod vertex;
const EPSILON: f32 = 1e-7;
fn main() {
pollster::block_on(run());
}