fix: tidy namespace Scenes::/Info:: PascalCase i locals UPPER_CASE

This commit is contained in:
2026-05-16 15:06:16 +02:00
parent ae89b252e2
commit ae359f4a1e
55 changed files with 303 additions and 303 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ namespace Easing {
}
auto outCubic(float t) -> float {
const float inv = 1.0F - t;
return 1.0F - (inv * inv * inv);
const float INV = 1.0F - t;
return 1.0F - (INV * INV * INV);
}
auto inCubic(float t) -> float { return t * t * t; }