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> /// </summary>
Vector2Base GetNormalized() const Vector2Base GetNormalized() const
{ {
Vector2Base Result(X, Y); Vector2Base result(X, Y);
Result.Normalize(); result.Normalize();
return Result; return result;
} }
public: public:

View File

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