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