swayfx/include/sway/fx_util/animation_utils.h
2024-05-06 21:13:41 +02:00

11 lines
227 B
C

#ifndef ANIMATION_UTILS_H
#define ANIMATION_UTILS_H
double lerp (double a, double b, double t);
double ease_out_cubic (double t);
// TODO: Add more easing functions in the future like ease_in and ease_in_out, etc...
#endif