aboutsummaryrefslogtreecommitdiffstats
path: root/src/render.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/render.rs')
-rw-r--r--src/render.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/render.rs b/src/render.rs
index 981bdd0..ab9e48e 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -53,7 +53,6 @@ pub fn render(
};
let sin_y =
((f64::sin(sin_x * (3.141 * 2.0) / f64_w) + 1.0) * (f64_h / 2.0)).floor() as usize;
- // let sin_idx = (sin_y * w as usize + x as usize) * 4;
for y in 0..h {
let idx = (y * w + x) as usize * 4;