RLGL_STANDALONE RAYMATH_STANDALONE Vector4

This commit is contained in:
Sean Pringle 2020-07-21 10:20:23 +10:00
parent 31457b8cb6
commit 77103553c5

View File

@ -114,6 +114,14 @@
float z; float z;
} Vector3; } Vector3;
// Vector4 type
typedef struct Vector4 {
float x;
float y;
float z;
float w;
} Vector4;
// Quaternion type // Quaternion type
typedef struct Quaternion { typedef struct Quaternion {
float x; float x;