Fix codestyle #989

This commit is contained in:
Wojtek Figat
2023-04-12 17:03:30 +02:00
parent e6de28bb6a
commit bedb056645
2 changed files with 6 additions and 6 deletions

View File

@@ -228,9 +228,9 @@ public:
/// </summary>
Vector2Base GetNormalized() const
{
Vector2Base Result(X, Y);
Result.Normalize();
return Result;
Vector2Base result(X, Y);
result.Normalize();
return result;
}
public:

View File

@@ -254,9 +254,9 @@ public:
/// </summary>
Vector3Base GetNormalized() const
{
Vector3Base Result(X, Y, Z);
Result.Normalize();
return Result;
Vector3Base result(X, Y, Z);
result.Normalize();
return result;
}
public: