diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-10-05 22:00:15 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-10-05 23:11:02 -0500 |
commit | 97d232c11d38f94e6719c83aa31771201c85430c (patch) | |
tree | b5da52b2de569469f36b25274f2fa3d42a3f1658 /core/math/basis.cpp | |
parent | ea9bb98f26be8212245f6ff796617901a8b9f3f6 (diff) | |
download | redot-engine-97d232c11d38f94e6719c83aa31771201c85430c.tar.gz |
Enhancements to includes in core data structures
Diffstat (limited to 'core/math/basis.cpp')
-rw-r--r-- | core/math/basis.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/basis.cpp b/core/math/basis.cpp index 4b163409ce..743a206ae7 100644 --- a/core/math/basis.cpp +++ b/core/math/basis.cpp @@ -142,8 +142,8 @@ bool Basis::is_symmetric() const { #endif Basis Basis::diagonalize() { -//NOTE: only implemented for symmetric matrices -//with the Jacobi iterative method +// NOTE: only implemented for symmetric matrices +// with the Jacobi iterative method #ifdef MATH_CHECKS ERR_FAIL_COND_V(!is_symmetric(), Basis()); #endif |