From ef4a2773e90ebc6ed7ad66bcfd4e30165c04fb93 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Mon, 16 Mar 2026 20:59:04 +0200 Subject: feat: Implement circle and rename square --- AnimationInterpolate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'AnimationInterpolate.c') diff --git a/AnimationInterpolate.c b/AnimationInterpolate.c index 2ff4a8b..f24c678 100644 --- a/AnimationInterpolate.c +++ b/AnimationInterpolate.c @@ -3,8 +3,8 @@ #define NUM_INTERPOLATE(a, b, perc) (a * (1.0 - (perc)) + b * (perc)) -byte4 -colorInterpolate(byte4 ina, byte4 inb, double percentage) { +color +colorInterpolate(color ina, color inb, double percentage) { ARGB a, b; ARGB_set(&a, ina); ARGB_set(&b, inb); -- cgit v1.2.3