Documentation for Vector4 + static DotProduct & Normalize
Former-commit-id: 4a190589292f299d266e20f7b9723594f2c32468
This commit is contained in:
@@ -60,8 +60,8 @@ namespace Nz
|
||||
|
||||
String ToString() const;
|
||||
|
||||
operator T*();
|
||||
operator const T*() const;
|
||||
operator T* ();
|
||||
operator const T* () const;
|
||||
|
||||
const Vector4& operator+() const;
|
||||
Vector4 operator-() const;
|
||||
@@ -87,6 +87,9 @@ namespace Nz
|
||||
bool operator>(const Vector4& vec) const;
|
||||
bool operator>=(const Vector4& vec) const;
|
||||
|
||||
static T DotProduct(const Vector4& vec1, const Vector4& vec2);
|
||||
static Vector4 Lerp(const Vector4& from, const Vector4& to, T interpolation);
|
||||
static Vector4 Normalize(const Vector4& vec);
|
||||
static Vector4 UnitX();
|
||||
static Vector4 UnitY();
|
||||
static Vector4 UnitZ();
|
||||
|
||||
Reference in New Issue
Block a user