diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-17 10:49:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 10:49:34 +0100 |
commit | bc576af969390fde3a5e4d56937e6f531d4db3ae (patch) | |
tree | aa007ec7a9e61dde42e1c69474313aefda4bc98d /core/math/quaternion.h | |
parent | f995f479652fc390c90030e65737b2ded21c9a8e (diff) | |
parent | b06d253920ba540831c0ce078b95c399623be5fc (diff) |
Merge pull request #57675 from TokageItLab/fix-blending
Diffstat (limited to 'core/math/quaternion.h')
-rw-r--r-- | core/math/quaternion.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/math/quaternion.h b/core/math/quaternion.h index 38729ac3df..9801746659 100644 --- a/core/math/quaternion.h +++ b/core/math/quaternion.h @@ -60,6 +60,8 @@ struct _NO_DISCARD_ Quaternion { Quaternion normalized() const; bool is_normalized() const; Quaternion inverse() const; + Quaternion log() const; + Quaternion exp() const; _FORCE_INLINE_ real_t dot(const Quaternion &p_q) const; real_t angle_to(const Quaternion &p_to) const; |