summaryrefslogtreecommitdiffstats
path: root/src/fakerw/rtquat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fakerw/rtquat.h')
-rw-r--r--src/fakerw/rtquat.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fakerw/rtquat.h b/src/fakerw/rtquat.h
index 3cf15f5a..450342b2 100644
--- a/src/fakerw/rtquat.h
+++ b/src/fakerw/rtquat.h
@@ -1,6 +1,11 @@
#pragma once
-typedef rw::Quat RtQuat;
+// Same layout as rw::Quat but with ugly imag,real separation which i don't want in librw
+struct RtQuat
+{
+ rw::V3d imag;
+ rw::float32 real;
+};
RwBool RtQuatConvertFromMatrix(RtQuat * const qpQuat, const RwMatrix * const mpMatrix);
RtQuat *RtQuatRotate(RtQuat * quat, const RwV3d * axis, RwReal angle, RwOpCombineType combineOp);