Euclidean + hue rotation

This commit is contained in:
2026-02-02 13:25:27 +01:00
parent 7348bd38b1
commit d54d9218c1
21 changed files with 1338 additions and 53 deletions

View File

@@ -50,6 +50,7 @@ pub struct UiState {
pub event_flash: f32,
pub flash_brightness: f32,
pub color_scheme: ColorScheme,
pub hue_rotation: f32,
}
impl Default for UiState {
@@ -78,6 +79,7 @@ impl Default for UiState {
event_flash: 0.0,
flash_brightness: 1.0,
color_scheme: ColorScheme::default(),
hue_rotation: 0.0,
}
}
}