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