JParticle mostly done (#2235)

This commit is contained in:
Caroline Madsen
2024-11-03 13:39:41 -05:00
committed by GitHub
parent 499d4dfe74
commit 63abf9f6d2
28 changed files with 2138 additions and 1469 deletions
+3 -1
View File
@@ -6,7 +6,9 @@
void JMAMTXApplyScale(const Mtx, Mtx, f32, f32, f32);
void JMAEulerToQuat(s16 param_0, s16 param_1, s16 param_2, Quaternion* param_3);
void JMAQuatLerp(const Quaternion*, const Quaternion*, f32, Quaternion*);
void JMAFastVECNormalize(register const Vec* src, register Vec* dst);
void JMAFastVECNormalize(register const Vec* src, register Vec* dst);
void JMAVECScaleAdd(register const Vec* vec1, register const Vec* vec2, register Vec* dst,
register f32 scale);
inline int JMAAbs(int value) {
return (value >> 0x1f ^ value) - (value >> 0x1f);