diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-07 13:35:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 13:35:25 +0100 |
commit | 44a88244dee7e8996824aa29507e917b22ffccca (patch) | |
tree | 5520e6abcfae670354c5b1d559eb84ee01cbbd64 /core/math/basis.h | |
parent | d32878bfa81c1f20335c319f7d70095f4e91b284 (diff) | |
parent | 5465e604bb8118450feb7422793efb7dc3e9d28b (diff) |
Merge pull request #44162 from aaronfranke/arg
Improve some argument names for core types
Diffstat (limited to 'core/math/basis.h')
-rw-r--r-- | core/math/basis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index 2584f1ff48..4cb3d55200 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -170,7 +170,7 @@ public: bool is_diagonal() const; bool is_rotation() const; - Basis slerp(const Basis &target, const real_t &t) const; + Basis slerp(const Basis &p_to, const real_t &p_weight) const; void rotate_sh(real_t *p_values); operator String() const; |