diff options
| author | Caroline Madsen <69010899+randomsalience@users.noreply.github.com> | 2024-11-03 13:39:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-03 20:39:41 +0200 |
| commit | 63abf9f6d2d52ed9d1309473bf4dc1123ca1ce5b (patch) | |
| tree | 873881597f156630960b2f3a959a8fade0e0e2e9 /include/JSystem/JMath | |
| parent | 499d4dfe745b9371f29649b3f2c461c350143e05 (diff) | |
JParticle mostly done (#2235)
Diffstat (limited to 'include/JSystem/JMath')
| -rw-r--r-- | include/JSystem/JMath/JMath.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/JSystem/JMath/JMath.h b/include/JSystem/JMath/JMath.h index 51f5ce78e8..e37460e115 100644 --- a/include/JSystem/JMath/JMath.h +++ b/include/JSystem/JMath/JMath.h @@ -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); |
