30 using func = std::function<T(T)>;
49 inline T linear_func(T x) noexcept
53 constexpr
auto linear = linear_func<float>;
58 inline T step_func(T x) noexcept
60 return x < T(0.5f) ? T(0.0f) : T(1.0f);
62 constexpr
auto step = step_func<float>;
67 inline T smooth_step_func(T x) noexcept
74 return (T(3.0f) - T(2.0f) * x) * std::pow(x, T(2.0f));
76 constexpr
auto smooth_step = smooth_step_func<float>;
81 inline T smoother_step_func(T x) noexcept
88 return std::pow(x, T(3.0f)) * (x * (x * T(6.0f) - T(15.0f)) + T(10.0f));
90 constexpr
auto smoother_step = smoother_step_func<float>;
95 inline T quadratic_in_func(T x) noexcept
97 return std::pow(x, T(2.0f));
99 constexpr
auto quadratic_in = quadratic_in_func<float>;
104 inline T quadratic_out_func(T x) noexcept
106 return -x * (x - T(2.0f));
108 constexpr
auto quadratic_out = quadratic_out_func<float>;
113 inline T quadratic_in_out_func(T x) noexcept
116 return T(2.0f) * std::pow(x, T(2.0f));
118 return T(1.0f) - T(2.0f) * std::pow(T(1.0f) - x, T(2.0f));
120 constexpr
auto quadratic_in_out = quadratic_in_out_func<float>;
125 inline T cubic_in_func(T x) noexcept
127 return std::pow(x, T(3.0f));
129 constexpr
auto cubic_in = cubic_in_func<float>;
134 inline T cubic_out_func(T x) noexcept
136 return std::pow(x - T(1.0f), T(3.0f)) + T(1.0f);
138 constexpr
auto cubic_out = cubic_out_func<float>;
143 inline T cubic_in_out_func(T x) noexcept
146 return T(4.0f) * std::pow(x, T(3.0f));
148 return T(1.0f) - T(4.0f) * std::pow(T(1.0f) - x, T(3.0f));
150 constexpr
auto cubic_in_out = cubic_in_out_func<float>;
155 inline T quartic_in_func(T x) noexcept
157 return std::pow(x, T(4.0f));
159 constexpr
auto quartic_in = quartic_in_func<float>;
164 inline T quartic_out_func(T x) noexcept
166 return T(1.0f) - std::pow(T(1.0f) - x, T(4.0f));
168 constexpr
auto quartic_out = quartic_out_func<float>;
173 inline T quartic_in_out_func(T x) noexcept
176 return 8 * std::pow(x, T(4.0f));
178 return T(1.0f) - T(8.0f) * std::pow(T(1.0f) - x, T(4.0f));
180 constexpr
auto quartic_in_out = quartic_in_out_func<float>;
185 inline T quintic_in_func(T x) noexcept
187 return std::pow(x, T(5.0f));
189 constexpr
auto quintic_in = quintic_in_func<float>;
194 inline T quintic_out_func(T x) noexcept
196 return T(1.0f) + std::pow(x - T(1.0f), T(5.0f));
198 constexpr
auto quintic_out = quintic_out_func<float>;
203 inline T quintic_in_out_func(T x) noexcept
206 return T(16.0f) * std::pow(x, T(5.0f));
208 return T(1.0f) - T(16.0f) * std::pow(T(1.0f) - x, T(5.0f));
210 constexpr
auto quintic_in_out = quintic_in_out_func<float>;
215 inline T sine_in_func(T x) noexcept
217 return T(1.0f) +
static_cast<T
>(std::sin(std::numbers::pi_v<T> / T(2.0f) * (x - T(1.0f))));
219 constexpr
auto sine_in = sine_in_func<float>;
224 inline T sine_out_func(T x) noexcept
226 return static_cast<T
>(std::sin(std::numbers::pi_v<T> / T(2.0f) * x));
228 constexpr
auto sine_out = sine_out_func<float>;
233 inline T sine_in_out_func(T x) noexcept
235 return T(0.5f) * (T(1.0f) -
static_cast<T
>(std::cos(x * std::numbers::pi_v<T>)));
237 constexpr
auto sine_in_out = sine_in_out_func<float>;
242 inline T circular_in_func(T x) noexcept
244 return T(1.0f) - std::sqrt(T(1.0f) - std::pow(x, T(2.0f)));
246 constexpr
auto circular_in = circular_in_func<float>;
251 inline T circular_out_func(T x) noexcept
253 return std::sqrt((T(2.0f) - x) * x);
255 constexpr
auto circular_out = circular_out_func<float>;
260 inline T circular_in_out_func(T x) noexcept
264 return T(0.5f) * (T(1.0f) - std::sqrt(T(1.0f) - T(4.0f) * std::pow(x, T(2.0f))));
268 return T(0.5f) * (T(1.0f) + std::sqrt(-T(4.0f) * std::pow(x, T(2.0f)) + T(8.0f) * x - T(3.0f)));
271 constexpr
auto circular_in_out = circular_in_out_func<float>;
276 inline T exponential_in_func(T x) noexcept
278 return x <= T(0.0f) ? T(0.0f) : std::
pow(T(2.0f), T(10.0f) * (x - T(1.0f)));
280 constexpr
auto exponential_in = exponential_in_func<float>;
285 inline T exponential_out_func(T x) noexcept
287 return x >= T(1.0f) ? T(1.0f) : T(1.0f) - std::
pow(T(2.0f), -T(10.0f) * x);
289 constexpr
auto exponential_out = exponential_out_func<float>;
294 inline T exponential_in_out_func(T x) noexcept
298 else if (x < T(0.5f))
299 return T(0.5f) * std::pow(T(2.0f), T(20.0f) * x - T(10.0f));
300 else if (x < T(1.0f))
301 return T(1.0f) - T(0.5f) * std::pow(T(2.0f), T(10.0f) - T(20.0f) * x);
305 constexpr
auto exponential_in_out = exponential_in_out_func<float>;
310 inline T elastic_in_func(T x) noexcept
312 return std::pow(T(2.0f), T(10.0f) * (x - T(1.0f)))
313 *
static_cast<T
>(std::sin(T(13.0f) * std::numbers::pi_v<T> / T(2.0f) * x));
315 constexpr
auto elastic_in = elastic_in_func<float>;
320 inline T elastic_out_func(T x) noexcept
323 - std::pow(T(2.0f), -T(10.0f) * x)
324 *
static_cast<T
>(std::sin(T(13.0f) * std::numbers::pi_v<T> / T(2.0f) * (x + T(1.0f))));
326 constexpr
auto elastic_out = elastic_out_func<float>;
331 inline T elastic_in_out_func(T x) noexcept
335 return T(0.5f) * std::pow(T(2.0f), T(10.0f) * (T(2.0f) * x - T(1.0f)))
336 *
static_cast<T
>(std::sin(T(13.0f) * std::numbers::pi_v<T> * x));
341 - T(0.5f) * std::pow(T(2.0f), T(10.0f) * (T(1.0f) - T(2.0f) * x))
342 *
static_cast<T
>(std::sin(T(13.0f) * std::numbers::pi_v<T> * x));
345 constexpr
auto elastic_in_out = elastic_in_out_func<float>;
350 inline T back_in_func(T x) noexcept
352 return x * (std::pow(x, T(2.0f)) -
static_cast<T
>(std::sin(std::numbers::pi_v<T> * x)));
354 constexpr
auto back_in = back_in_func<float>;
359 inline T back_out_func(T x) noexcept
361 const T fInv = T(1.0f) - x;
362 return T(1.0f) - fInv * (fInv * fInv -
static_cast<T
>(std::sin(std::numbers::pi_v<T> * fInv)));
364 constexpr
auto back_out = back_out_func<float>;
369 inline T back_in_out_func(T x) noexcept
373 const T f2t = T(2.0f) * x;
374 return T(0.5f) * f2t * (f2t * f2t -
static_cast<T
>(std::sin(std::numbers::pi_v<T> * f2t)));
378 const T fInv = T(2.0f) - T(2.0f) * x;
379 return T(1.0f) - T(0.5f) * fInv * (fInv * fInv -
static_cast<T
>(std::sin(std::numbers::pi_v<T> * fInv)));
382 constexpr
auto back_in_out = back_in_out_func<float>;
387 inline T bounce_out_func(T x) noexcept
389 if (x < T(4.0f) / T(11.0f))
391 return (T(121.0f) * std::pow(x, T(2.0f))) / T(16.0f);
393 else if (x < T(8.0f) / T(11.0f))
395 return T(363.0f) / T(40.0f) * std::pow(x, T(2.0f)) - T(99.0f) / T(10.0f) * x + T(17.0f) / T(5.0f);
397 else if (x < T(9.0f) / T(10.0f))
399 return T(4356.0f) / T(361.0f) * std::pow(x, T(2.0f)) - T(35442.0f) / T(1805.0f) * x + T(16061.0f) / T(1805.0f);
403 return T(54.0f) / T(5.0f) * std::pow(x, T(2.0f)) - T(513.0f) / T(25.0f) * x + T(268.0f) / T(25.0f);
406 constexpr
auto bounce_out = bounce_out_func<float>;
411 inline T bounce_in_func(T x) noexcept
413 return T(1.0f) - bounce_out_func<T>(T(1.0f) - x);
415 constexpr
auto bounce_in = bounce_in_func<float>;
420 inline T bounce_in_out_func(T x) noexcept
423 return T(0.5f) * bounce_in_func<T>(T(2.0f) * x);
425 return T(0.5f) * bounce_out_func<T>(T(2.0f) * x - T(1.0f)) + T(0.5f);
427 constexpr
auto bounce_in_out = bounce_in_out_func<float>;
constexpr bool epsilon_greater_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
constexpr bool epsilon_less_equal(T left, T right, T eps=std::numeric_limits< T >::epsilon())
Constexpr comparison function for a user defined epsilon values.
double pow(T number, int nPower)
Power function for integer power.