diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-25 20:42:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 20:42:45 +0200 |
commit | d98a6363fa39f5187be69be39cb337bdf2b67c86 (patch) | |
tree | 2a5c2f43eee28b45506dadda32a4d3ea3ac8bb31 /core/math/quaternion.cpp | |
parent | 8911d6ecc85a96042d6fff6d22f63a2d00b4d877 (diff) | |
parent | d03b7fbe090dca1f9ea4190116ac0efbee37e929 (diff) |
Merge pull request #54084 from reduz/node3d-rotation-options
Diffstat (limited to 'core/math/quaternion.cpp')
-rw-r--r-- | core/math/quaternion.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/quaternion.cpp b/core/math/quaternion.cpp index a29a70c1f0..944474686a 100644 --- a/core/math/quaternion.cpp +++ b/core/math/quaternion.cpp @@ -44,7 +44,7 @@ real_t Quaternion::angle_to(const Quaternion &p_to) const { // This implementation uses XYZ convention (Z is the first rotation). Vector3 Quaternion::get_euler_xyz() const { Basis m(*this); - return m.get_euler_xyz(); + return m.get_euler(Basis::EULER_ORDER_XYZ); } // get_euler_yxz returns a vector containing the Euler angles in the format @@ -56,7 +56,7 @@ Vector3 Quaternion::get_euler_yxz() const { ERR_FAIL_COND_V_MSG(!is_normalized(), Vector3(0, 0, 0), "The quaternion must be normalized."); #endif Basis m(*this); - return m.get_euler_yxz(); + return m.get_euler(Basis::EULER_ORDER_YXZ); } void Quaternion::operator*=(const Quaternion &p_q) { |