aboutsummaryrefslogtreecommitdiff
path: root/redist/linmath.c
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-04-10 09:06:00 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-04-10 09:06:00 -0600
commit42462d9253229835800814519593d6af0b5fbfc4 (patch)
treee044d12f084f0717c4b78571cb161347170aa58d /redist/linmath.c
parent7f4385538d6b19ea5dd3f00c4a0eb49385798031 (diff)
downloadlibsurvive-42462d9253229835800814519593d6af0b5fbfc4.tar.gz
libsurvive-42462d9253229835800814519593d6af0b5fbfc4.tar.bz2
Added utility function to linmath
Diffstat (limited to 'redist/linmath.c')
-rw-r--r--redist/linmath.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/redist/linmath.c b/redist/linmath.c
index 50baeab..f4c3635 100644
--- a/redist/linmath.c
+++ b/redist/linmath.c
@@ -173,6 +173,13 @@ inline void axisanglefromquat(FLT *angle, FLT *axis, FLT *q) {
// Originally from Mercury (Copyright (C) 2009 by Joshua Allen, Charles Lohr, Adam Lowman)
// Under the mit/X11 license.
+inline void quatset(LinmathQuat q, FLT w, FLT x, FLT y, FLT z) {
+ q[0] = w;
+ q[1] = x;
+ q[2] = y;
+ q[3] = z;
+}
+
inline void quatsetnone(LinmathQuat q) {
q[0] = 1;
q[1] = 0;