swayfx/include/sway/fx_util/animation_utils.h

11 lines
227 B
C
Raw Permalink Normal View History

#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