added more logs to test

This commit is contained in:
Andre Henriques 2023-03-15 22:19:48 +00:00
parent 8c4c736555
commit 81b4de3690
2 changed files with 7 additions and 2 deletions

View File

@ -11,6 +11,7 @@ mod utils;
use animations::Animation;
use r2d2::PooledConnection;
use utils::ApiResponse;
use render::Lerp;
use rocket::{State, serde::json::serde_json::json};
@ -124,6 +125,10 @@ fn ligth_controll(
render.remove_animation(ani.ok().unwrap());
}
println!("aaa");
println!("aaa {}", 0.lerp(&255));
render.render();
}

View File

@ -298,13 +298,13 @@ impl Render {
}
}
trait Lerp {
pub trait Lerp {
fn lerp(self, other: &Self) -> Self;
}
impl Lerp for u8 {
fn lerp(self, other: &Self) -> Self {
((self as f64) + (((*other as f64) - (self as f64)) * 0.2)) as u8
((self as f64) + (((*other as f64) - (self as f64)) * 0.1)) as u8
}
}