summaryrefslogtreecommitdiff
path: root/src/math/vec3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/vec3.c')
-rw-r--r--src/math/vec3.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/vec3.c b/src/math/vec3.c
index 4ca8519..1deb52e 100644
--- a/src/math/vec3.c
+++ b/src/math/vec3.c
@@ -7,6 +7,7 @@
Vec3 vec3forward = {0,0,1};
Vec3 vec3up = {0, 1, 0};
Vec3 vec3left = {1, 0, 0};
+Vec3 vec3zero = {0, 0, 0};
void vec3_cross(Vec3* v1, Vec3* v2, Vec3* out) {
ssr_assert(v1 && v2 && out);