Added Matrix4::Concatenate static method

Former-commit-id: 842e86a89fb7468552d6a9473a228bfb7a8a3809
This commit is contained in:
Lynix
2014-07-08 16:15:05 +02:00
parent d84c2e040c
commit b51845d88f
2 changed files with 20 additions and 0 deletions

View File

@@ -110,6 +110,8 @@ class NzMatrix4
bool operator==(const NzMatrix4& mat) const;
bool operator!=(const NzMatrix4& mat) const;
static NzMatrix4 Concatenate(const NzMatrix4& left, const NzMatrix4& right);
static NzMatrix4 ConcatenateAffine(const NzMatrix4& left, const NzMatrix4& right);
static NzMatrix4 Identity();
static NzMatrix4 LookAt(const NzVector3<T>& eye, const NzVector3<T>& target, const NzVector3<T>& up = NzVector3<T>::Up());
static NzMatrix4 Ortho(T left, T right, T top, T bottom, T zNear = -1.0, T zFar = 1.0);