diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-09-07 09:43:22 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-09-13 17:20:30 -0500 |
commit | 56806ffeed8f52781b460e328b347323b4dbaec0 (patch) | |
tree | fbfaf77038aba9dac18b8db786b486a30c664175 /core/math/basis.h | |
parent | 3ed4497113fa10611b90290ce22a751fb9d26e2e (diff) | |
download | redot-engine-56806ffeed8f52781b460e328b347323b4dbaec0.tar.gz |
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; |