clang-format

clang-tidy (macos)
This commit is contained in:
2026-03-23 07:26:21 +01:00
parent 0ddb6c85e1
commit 6595b28790
65 changed files with 583 additions and 570 deletions

View File

@@ -40,7 +40,7 @@ namespace Easing {
if (t < 0.5F) {
return 2.0F * t * t;
}
return -1.0F + ((4.0F - 2.0F * t) * t);
return -1.0F + ((4.0F - (2.0F * t)) * t);
}
// CUBIC (Cúbica: t^3)
@@ -156,12 +156,12 @@ namespace Easing {
// BACK (Overshoot - retrocede antes de avanzar)
inline auto backIn(float t, float overshoot = 1.70158F) -> float {
return t * t * ((overshoot + 1.0F) * t - overshoot);
return t * t * (((overshoot + 1.0F) * t) - overshoot);
}
inline auto backOut(float t, float overshoot = 1.70158F) -> float {
const float F = t - 1.0F;
return (F * F * ((overshoot + 1.0F) * F + overshoot)) + 1.0F;
return (F * F * (((overshoot + 1.0F) * F) + overshoot)) + 1.0F;
}
inline auto backInOut(float t, float overshoot = 1.70158F) -> float {
@@ -169,11 +169,11 @@ namespace Easing {
if (t < 0.5F) {
const float F = 2.0F * t;
return 0.5F * (F * F * ((S + 1.0F) * F - S));
return 0.5F * (F * F * (((S + 1.0F) * F) - S));
}
const float F = (2.0F * t) - 2.0F;
return 0.5F * (F * F * ((S + 1.0F) * F + S) + 2.0F);
return 0.5F * ((F * F * (((S + 1.0F) * F) + S)) + 2.0F);
}
// ELASTIC (Oscilación elástica - efecto de resorte)