Class Vector4
Defined in File Vector.h
Class Documentation
-
class Vector4
Represents a 4 dimensional vector.
Public Functions
-
inline Vector4(float X, float Y, float Z, float W)
Constructs a Vector4 with the given x, y, z, w values.
- Parameters
X – float
Y – float
Z – float
W – float
-
Vector4 operator+(const Vector4 &Other) const
Member by member addition with another Vector4.
- Parameters
Vector4 – Other
-
Vector4 operator-(const Vector4 &Other) const
Subtracts another Vector4 from this one.
- Parameters
Vector4 – Other
-
Vector4 operator*(const Vector4 &Other) const
Member by member multiplication with another Vector4.
- Parameters
Vector4 – Other
Public Static Functions
-
inline Vector4(float X, float Y, float Z, float W)