diff options
Diffstat (limited to 'quantum/visualizer/led_test.c')
| -rw-r--r-- | quantum/visualizer/led_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/visualizer/led_test.c b/quantum/visualizer/led_test.c index c2ea30b55..a9abace8d 100644 --- a/quantum/visualizer/led_test.c +++ b/quantum/visualizer/led_test.c | |||
| @@ -89,8 +89,8 @@ static uint8_t crossfade_start_frame[NUM_ROWS][NUM_COLS]; | |||
| 89 | static uint8_t crossfade_end_frame[NUM_ROWS][NUM_COLS]; | 89 | static uint8_t crossfade_end_frame[NUM_ROWS][NUM_COLS]; |
| 90 | 90 | ||
| 91 | static uint8_t compute_gradient_color(float t, float index, float num) { | 91 | static uint8_t compute_gradient_color(float t, float index, float num) { |
| 92 | const float two_pi = 2.0f * PI; | 92 | const float two_pi = M_2_PI; |
| 93 | float normalized_index = (1.0f - index / (num - 1)) * two_pi; | 93 | float normalized_index = (1.0f - index / (num - 1.0f)) * two_pi; |
| 94 | float x = t * two_pi + normalized_index; | 94 | float x = t * two_pi + normalized_index; |
| 95 | float v = 0.5 * (cosf(x) + 1.0f); | 95 | float v = 0.5 * (cosf(x) + 1.0f); |
| 96 | return (uint8_t)(255.0f * v); | 96 | return (uint8_t)(255.0f * v); |
