swayfx/include/sway/desktop/fx_renderer/animation_utils.h
2024-01-26 19:46:13 +01:00

10 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