Run 'cargo fix --edition'
authorBernie Innocenti <codewiz@google.com>
Thu, 27 Dec 2018 14:13:15 +0000 (21:13 +0700)
committerBernie Innocenti <codewiz@google.com>
Thu, 27 Dec 2018 14:13:15 +0000 (21:13 +0700)
bounding_box.rs
lib.rs
main.rs
mandelwow.rs
support/camera.rs

index a08246e6dfe179416710c80c38174391625a499b..5cc4b18c0c5d6b0cf1eee9e69f933ebca5b05f4b 100644 (file)
@@ -1,4 +1,4 @@
-use cube::Cube;
+use crate::cube::Cube;
 use glium;
 use glium::{Display, Program, Surface};
 use glium::index::{IndexBuffer, PrimitiveType};
diff --git a/lib.rs b/lib.rs
index 3ec2b55117d9850a3dae3a59f122ceba6a32202e..5366202cba37a4f4f44d4351f66b7679681bc0a6 100644 (file)
--- a/lib.rs
+++ b/lib.rs
@@ -18,9 +18,9 @@ pub mod support;
 pub mod text;
 pub mod timer;
 
-pub use bounding_box::BoundingBox;
-pub use cube::Cube;
-pub use shaded_cube::ShadedCube;
+pub use crate::bounding_box::BoundingBox;
+pub use crate::cube::Cube;
+pub use crate::shaded_cube::ShadedCube;
 
 #[cfg(feature = "image")]
 pub fn screenshot(display : &glium::Display) {
diff --git a/main.rs b/main.rs
index 11ded826284cc340aa462e7739f9b25eb3c56195..426bfb12ee398d4dce19ab227ddcc2810ae8c0dd 100644 (file)
--- a/main.rs
+++ b/main.rs
@@ -12,7 +12,7 @@ use glium::glutin::WindowEvent::KeyboardInput;
 use glium::Surface;
 use mandelwow_lib::*;
 use std::f32::consts::PI;
-use timer::Timer;
+use crate::timer::Timer;
 
 #[cfg(target_os = "emscripten")]
 use std::os::raw::{c_int, c_void};
@@ -120,8 +120,8 @@ fn main() {
 
     let mut timer = Timer::new();
     let mut camera = support::camera::CameraState::new();
-    let mut bounding_box_enabled = true;
-    let mut fullscreen = true;
+    let bounding_box_enabled = true;
+    let _fullscreen = true;
 
     // These are the bounds of the 3D Mandelwow section which we render in 3-space.
     let bounds = Cube {
index bbb36712b6e08c2295ee24e820f8053b7d919cdc..9b236a57965581942a213acb1e690d8582d6b2cc 100644 (file)
@@ -1,10 +1,10 @@
 // Wow. Such fractal.
 
-use cube::Cube;
+use crate::cube::Cube;
 use glium;
 use glium::index::PrimitiveType;
 use glium::{Display, Program, Surface};
-use support;
+use crate::support;
 
 /*
 fn mand(cx: f32, cy: f32) -> [f32; 3] {
index 8460197f5558dac493376e11d5c4e855faa55665..5ae1c8c762be67db17a0d3bfa880f21c9c05a33e 100644 (file)
@@ -4,8 +4,8 @@ use glium;
 use glium::glutin::VirtualKeyCode;
 use std::f32;
 use std::f32::consts::PI;
-use support::vec3::Vec3;
-use support::vec3::norm;
+use crate::support::vec3::Vec3;
+use crate::support::vec3::norm;
 
 #[derive(Default)]
 pub struct CameraState {