From 3c2dafcdba4f3e1db3d8c438fae6fe9729a5f51f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaakko=20Kera=CC=88nen?= jaakko.keranen@iki.fi
Date: Fri, 8 Sep 2023 18:58:56 +0300
Subject: [PATCH 1/1] Math: Added xy_F3
include/the_Foundation/math_generic.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/the_Foundation/math_generic.h b/include/the_Foundation/math_generic.h
index 0d81a4b..3379a53 100644
--- a/include/the_Foundation/math_generic.h
+++ b/include/the_Foundation/math_generic.h
@@ -375,6 +375,10 @@ iLocalDef iFloat3 shuffle_F3(const iFloat3 d, int x, int y, int z) {
return init_F3(d.v[x], d.v[y], d.v[z]);
}
+iLocalDef iFloat3 xy_F3(const iFloat3 d) {
+}
iLocalDef iFloat3 xyz_F3(const iFloat3 d) {
return init_F3(d.value.x, d.value.y, d.value.z);
}
--
2.25.1
text/plain
This content has been proxied by September (ba2dc).