mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#ifndef Interpolatable_hpp
|
|
#define Interpolatable_hpp
|
|
|
|
#include <algorithm>
|
|
|
|
namespace lottie {
|
|
|
|
double remapDouble(double value, double fromLow, double fromHigh, double toLow, double toHigh);
|
|
|
|
double clampDouble(double value, double a, double b);
|
|
|
|
}
|
|
|
|
#endif /* Interpolatable_hpp */
|