diff options
author | Ansariel Hiller <Ansariel@users.noreply.github.com> | 2025-04-18 22:15:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-18 23:15:47 +0300 |
commit | 74a71e30e76862d59a240a1592c4094ff82f3bf6 (patch) | |
tree | d6b2cc41eedf45137648b2fb64d5a3bde82ad3e7 /indra/llmath/v4math.h | |
parent | f5be5493706368792191eb2f85c126072a8379d8 (diff) |
Restore llmath fixes that got lost during merge (#3948)
Diffstat (limited to 'indra/llmath/v4math.h')
-rw-r--r-- | indra/llmath/v4math.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llmath/v4math.h b/indra/llmath/v4math.h index d49639bd35..1cbd0d9a78 100644 --- a/indra/llmath/v4math.h +++ b/indra/llmath/v4math.h @@ -118,8 +118,6 @@ public: bool isExactlyClear() const { return (mV[VW] == 1.0f) && !mV[VX] && !mV[VY] && !mV[VZ]; } bool isExactlyZero() const { return !mV[VW] && !mV[VX] && !mV[VY] && !mV[VZ]; } - const LLVector4& rotVec(F32 angle, const LLVector4 &vec); // Rotates about vec by angle radians - const LLVector4& rotVec(F32 angle, F32 x, F32 y, F32 z); // Rotates about x,y,z by angle radians const LLVector4& rotVec(const LLMatrix4 &mat); // Rotates by MAT4 mat const LLVector4& rotVec(const LLQuaternion &q); // Rotates by QUAT q |