fx: removed unused import
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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.));
|
||||||
|
|||||||
Reference in New Issue
Block a user