mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
@@ -20,9 +20,6 @@ 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;
|
||||
@@ -52,9 +49,4 @@ 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