diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-26 13:44:41 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-26 13:44:41 +0200 |
commit | 3ec673085b161c6d0b134df11d2a63874066553d (patch) | |
tree | 2c27048e3c890ddf945b54d932c59ab856cdea10 /core/math/basis.h | |
parent | 1e4165ac603946afaf77c92c1a3d515432d3c747 (diff) | |
parent | 56806ffeed8f52781b460e328b347323b4dbaec0 (diff) | |
download | redot-engine-3ec673085b161c6d0b134df11d2a63874066553d.tar.gz |
Merge pull request #79523 from aaronfranke/is-conformal
Add `is_conformal` method to Basis and Transform2D
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 1a68bee686..adacd1c216 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_conformal() const; bool is_diagonal() const; bool is_rotation() const; |