diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-10-12 19:38:43 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-12-06 13:12:05 -0600 |
commit | 7ee273723d815e1e211107244dcbc8735ca189a1 (patch) | |
tree | 1b3898a705bda4db60e5eba6bce4e0bc14e0e454 /core/math/basis.h | |
parent | 2f73a059cefadcd944b6874f2557ec82e46a562d (diff) | |
download | redot-engine-7ee273723d815e1e211107244dcbc8735ca189a1.tar.gz |
Fix Basis is_orthogonal and is_rotation methods, add is_orthonormal
Diffstat (limited to 'core/math/basis.h')
-rw-r--r-- | core/math/basis.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/basis.h b/core/math/basis.h index adacd1c216..b4d971464e 100644 --- a/core/math/basis.h +++ b/core/math/basis.h @@ -138,6 +138,7 @@ struct _NO_DISCARD_ Basis { _FORCE_INLINE_ Basis operator*(const real_t p_val) const; bool is_orthogonal() const; + bool is_orthonormal() const; bool is_conformal() const; bool is_diagonal() const; bool is_rotation() const; |