Skip to content
Snippets Groups Projects
Commit c3c68e72 authored by Stephen D's avatar Stephen D
Browse files

Bug fix with possible colour range on red

parent eca9ecdf
No related branches found
No related tags found
No related merge requests found
[package]
name = "dotacat"
version = "0.1.2"
version = "0.1.3"
authors = ["Stephen <stephen@scd31.com>"]
description = "Like lolcat, but fast"
edition = "2018"
......
......@@ -4,7 +4,7 @@ use std::io::{stdout, Write};
use std::process::exit;
fn rainbow(freq: f64, i: f64) -> (u8, u8, u8) {
let red = ((freq * i).sin() * 127.0) as u8 + 128;
let red = ((freq * i).sin() * 127.0) as i16 + 128;
let green = ((freq * i + 2.0 * consts::PI / 3.0).sin() * 127.0) as i16 + 128;
let blue = ((freq * i + 4.0 * consts::PI / 3.0).sin() * 127.0) as i16 + 128;
(red as u8, green as u8, blue as u8)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment