Added Quaternion typedef

This commit is contained in:
Ray 2018-07-02 18:53:46 +02:00
parent 1727bbabb1
commit 7b971e0623
4 changed files with 31 additions and 25 deletions

View file

@ -332,6 +332,8 @@ typedef struct Vector4 {
float w;
} Vector4;
typedef Vector4 Quaternion;
// Matrix type (OpenGL style 4x4 - right handed, column major)
typedef struct Matrix {
float m0, m4, m8, m12;