fx: removed unused import

This commit is contained in:
2026-06-13 12:20:20 +02:00
parent 8332ce6204
commit 4db5cbbad2
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
pub mod circle; pub mod circle;
pub mod cube; pub mod cube;
pub mod cylinder;
pub mod hit; pub mod hit;
pub mod materials; pub mod materials;
pub mod mesh; pub mod mesh;

View File

@@ -129,7 +129,7 @@ impl Scene {
let mut c = Camera::new(); let mut c = Camera::new();
c.set_fov(20.); c.set_fov(20.);
c.set_anti_alias_rate(2); c.set_anti_alias_rate(4);
c.set_vup(Vec3::new(0., 1., 0.)); c.set_vup(Vec3::new(0., 1., 0.));
c.set_look_from(Vec3::new(13., 2., 3.)); c.set_look_from(Vec3::new(13., 2., 3.));
c.set_look_at(Vec3::new(0., 0., 0.)); c.set_look_at(Vec3::new(0., 0., 0.));