Added primitives

This commit is contained in:
STP
2023-11-12 02:06:46 -05:00
parent eab69336a1
commit dfc5d1ad23
4 changed files with 80 additions and 16 deletions

View File

@@ -2,10 +2,18 @@
#![allow(unused_imports)]
#![allow(unused_variables)]
//Use linear algebra module
pub mod state;
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());
}