From 77103553c58ed08622e9a83bff66deb3d18ed086 Mon Sep 17 00:00:00 2001 From: Sean Pringle Date: Tue, 21 Jul 2020 10:20:23 +1000 Subject: [PATCH] RLGL_STANDALONE RAYMATH_STANDALONE Vector4 --- src/raymath.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/raymath.h b/src/raymath.h index b51573e72..d77dbf5b4 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -114,6 +114,14 @@ float z; } Vector3; + // Vector4 type + typedef struct Vector4 { + float x; + float y; + float z; + float w; + } Vector4; + // Quaternion type typedef struct Quaternion { float x;