diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-04-25 21:32:04 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-04-25 21:32:04 +0800 |
commit | b74c8ee3fee8dd640f40250ed09f213afa72cefc (patch) | |
tree | cdad4aa47d4c669292591154b9c3bc1851629dd6 /indra/llmath/v4math.h | |
parent | 0dd799f109760f00103a6c58b437aaf3148adc75 (diff) | |
parent | ec6c988bbbc59aed218d3629bf0c13192f6b726c (diff) |
Merge tag 'Second_Life_Release#ec6c988-2025.05' into 2025.052025.05
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 |