feat(raytracer): add minimal implementation

This commit is contained in:
2024-11-17 14:03:05 +01:00
parent 369293598f
commit a1ccb33a6e
10 changed files with 443 additions and 0 deletions

5
src/bin/rt_demo.rs Normal file
View File

@@ -0,0 +1,5 @@
use lispers::raytracer::{scene::Scene, types::Light};
fn main() {
let scene = Scene::new();
}