fix: tidy namespace Scenes::/Info:: PascalCase i locals UPPER_CASE
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user