summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/animations/cycle_spiral_anim.h
diff options
context:
space:
mode:
authorvin <git@vineetk.net>2024-01-15 19:40:26 -0500
committervin <git@vineetk.net>2024-01-15 19:41:32 -0500
commita2c86b4053386fbc9a70674802c1157375b10066 (patch)
treecda5faee0c8c2298a0be47b8c1961bf16df595c9 /quantum/rgb_matrix/animations/cycle_spiral_anim.h
parente33ae91091e425699f0cdfd4483023b07ec3ed5e (diff)
remove rgb support
Diffstat (limited to 'quantum/rgb_matrix/animations/cycle_spiral_anim.h')
-rw-r--r--quantum/rgb_matrix/animations/cycle_spiral_anim.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/quantum/rgb_matrix/animations/cycle_spiral_anim.h b/quantum/rgb_matrix/animations/cycle_spiral_anim.h
deleted file mode 100644
index 904450179e..0000000000
--- a/quantum/rgb_matrix/animations/cycle_spiral_anim.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifdef ENABLE_RGB_MATRIX_CYCLE_SPIRAL
-RGB_MATRIX_EFFECT(CYCLE_SPIRAL)
-# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-
-static HSV CYCLE_SPIRAL_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dist, uint8_t time) {
- hsv.h = dist - time - atan2_8(dy, dx);
- return hsv;
-}
-
-bool CYCLE_SPIRAL(effect_params_t* params) {
- return effect_runner_dx_dy_dist(params, &CYCLE_SPIRAL_math);
-}
-
-# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-#endif // ENABLE_RGB_MATRIX_CYCLE_SPIRAL