From 42c783448e688235c9b381baee3542cd9b9cf5b4 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 29 Mar 2021 16:47:52 -0500 Subject: [PATCH] chore: rename some struct fields --- src/main.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main.rs b/src/main.rs index abdcdc4..d4d9987 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,8 +15,8 @@ fn main() { struct SpriteScale { zoom: f64, - horiz: f64, - verti: f64, + horizontal: f64, + vertical: f64, step: f64, iterations: u32, } @@ -25,8 +25,8 @@ impl Default for SpriteScale { fn default() -> Self { Self { zoom: 1.0, - horiz: 0.0, - verti: 0.0, + horizontal: 0.0, + vertical: 0.0, step: 0.01, iterations: 64, } @@ -45,8 +45,8 @@ fn transform_mandelbrot_system( let iter_mod = input.pressed(KeyCode::T) as i8 - input.pressed(KeyCode::G) as i8; scale.step += (scale.step / 10.0) * step_mod as f64; - scale.verti += scale.step * vertical as f64; - scale.horiz += scale.step * horizontal as f64; + scale.vertical += scale.step * vertical as f64; + scale.horizontal += scale.step * horizontal as f64; scale.zoom += scale.step * zoom as f64; if iter_mod == 1 { @@ -86,8 +86,8 @@ fn mandelbrot_render_system( if let Some(texture_handle) = &material.texture { if let Some(texture) = textures.get_mut(texture_handle) { let z = scale.zoom; - let h = scale.horiz; - let v = scale.verti; + let h = scale.horizontal; + let v = scale.vertical; let iters = scale.iterations; let start = Instant::now();