From d31239eeeac4ea595b1d1e7063ab5d762809fb02 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 28 Mar 2026 20:33:03 +0200 Subject: feat!: Complete rewrite This new scheme will be much simpler --- AnimationMove.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 AnimationMove.h (limited to 'AnimationMove.h') diff --git a/AnimationMove.h b/AnimationMove.h deleted file mode 100644 index 48a3b92..0000000 --- a/AnimationMove.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef _ANIMATION_MOVE -#define _ANIMATION_MOVE - -#include "Animation.h" - -struct AM_Linear { - PixelRenderer callback; - void* priv; - - i32 startRow; - i32 startCol; - float dRow; - float dCol; - bool wrapCoordinates; -}; - -ARGB AM_Linear(const Animation* anim, PixelRendererParams params); - -struct AM_Spin { - PixelRenderer callback; - void* priv; - - float theta; - float dTheta; - i32 centerRow; - i32 centerCol; -}; - -ARGB AM_Spin(const Animation* anim, PixelRendererParams params); - -#endif /* _ANIMATION_MOVE */ -- cgit v1.2.3