Added min(vector, vector) and max(vector,vector) functions

This commit is contained in:
Kearwood Kip Gilbert
2018-03-28 12:59:33 -07:00
parent 7fc321ebb8
commit 20d341227d
8 changed files with 47 additions and 3 deletions

View File

@@ -90,6 +90,9 @@ public:
static Vector4 Normalize(const Vector4 &v);
static float Dot(const Vector4 &v1, const Vector4 &v2);
static Vector4 Min(const Vector4 &v1, const Vector4 &v2);
static Vector4 Max(const Vector4 &v1, const Vector4 &v2);
static Vector4 Min();
static Vector4 Max();
static Vector4 Zero();