diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-31 08:58:37 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-05-31 09:00:37 +0200 |
commit | 43b7ebf0a0478d7b04620b03920fd82041afb588 (patch) | |
tree | 0532156ef2bdeac7cd461ffc2014ee75bd25f2a0 /core/math/matrix3.cpp | |
parent | e823a366d02cdcd8ac48f635eeb6127962aeeb2a (diff) |
Style: Apply clang-format (5.0) to some missed files
Diffstat (limited to 'core/math/matrix3.cpp')
-rw-r--r-- | core/math/matrix3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/matrix3.cpp b/core/math/matrix3.cpp index 8ee8ccb457..202115e2ca 100644 --- a/core/math/matrix3.cpp +++ b/core/math/matrix3.cpp @@ -828,7 +828,7 @@ void Basis::set_diagonal(const Vector3 p_diag) { } Basis Basis::slerp(const Basis &target, const real_t &t) const { - // TODO: implement this directly without using quaternions to make it more efficient +// TODO: implement this directly without using quaternions to make it more efficient #ifdef MATH_CHECKS ERR_FAIL_COND_V(is_rotation() == false, Basis()); ERR_FAIL_COND_V(target.is_rotation() == false, Basis()); |