11 lines
227 B
C
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
|