mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
alright im not so happy
This commit is contained in:
@@ -20,6 +20,9 @@ public:
|
||||
return FVector{ this->X - A.X, this->Y - A.Y, this->Z - A.Z };
|
||||
}
|
||||
|
||||
|
||||
FORCEINLINE FVector operator*(float Scale) const;
|
||||
|
||||
FORCEINLINE float SizeSquared() const
|
||||
{
|
||||
return X * X + Y * Y + Z * Z;
|
||||
@@ -49,4 +52,9 @@ public:
|
||||
{
|
||||
*this = *this - A;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
FORCEINLINE FVector FVector::operator*(float Scale) const
|
||||
{
|
||||
return FVector(X * Scale, Y * Scale, Z * Scale);
|
||||
}
|
||||
Reference in New Issue
Block a user