aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix_animations/cycle_pinwheel_anim.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-30 11:19:03 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2019-08-30 15:01:52 -0700
commitb624f32f944acdc59dcb130674c09090c5c404cb (patch)
treebc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/rgb_matrix_animations/cycle_pinwheel_anim.h
parent61af76a10d00aba185b8338604171de490a13e3b (diff)
downloadqmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.tar.gz
qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.zip
clang-format changes
Diffstat (limited to 'quantum/rgb_matrix_animations/cycle_pinwheel_anim.h')
-rw-r--r--quantum/rgb_matrix_animations/cycle_pinwheel_anim.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/quantum/rgb_matrix_animations/cycle_pinwheel_anim.h b/quantum/rgb_matrix_animations/cycle_pinwheel_anim.h
index 54e222dc2..779988709 100644
--- a/quantum/rgb_matrix_animations/cycle_pinwheel_anim.h
+++ b/quantum/rgb_matrix_animations/cycle_pinwheel_anim.h
@@ -1,15 +1,13 @@
1#ifndef DISABLE_RGB_MATRIX_CYCLE_PINWHEEL 1#ifndef DISABLE_RGB_MATRIX_CYCLE_PINWHEEL
2RGB_MATRIX_EFFECT(CYCLE_PINWHEEL) 2RGB_MATRIX_EFFECT(CYCLE_PINWHEEL)
3#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS 3# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
4 4
5static HSV CYCLE_PINWHEEL_math(HSV hsv, int16_t dx, int16_t dy, uint8_t time) { 5static HSV CYCLE_PINWHEEL_math(HSV hsv, int16_t dx, int16_t dy, uint8_t time) {
6 hsv.h = atan2_8(dy, dx) + time; 6 hsv.h = atan2_8(dy, dx) + time;
7 return hsv; 7 return hsv;
8} 8}
9 9
10bool CYCLE_PINWHEEL(effect_params_t* params) { 10bool CYCLE_PINWHEEL(effect_params_t* params) { return effect_runner_dx_dy(params, &CYCLE_PINWHEEL_math); }
11 return effect_runner_dx_dy(params, &CYCLE_PINWHEEL_math);
12}
13 11
14#endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS 12# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
15#endif // DISABLE_RGB_MATRIX_CYCLE_PINWHEEL 13#endif // DISABLE_RGB_MATRIX_CYCLE_PINWHEEL