diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-04-06 15:47:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-06 15:47:20 +0200 |
| commit | ac591d9904e4e5cf7841b3e79caabf558d37db0e (patch) | |
| tree | 70f3bd487e91feb4ca777dba214a09b17041da97 /core/math/face3.cpp | |
| parent | 72407a9cfbd4f58102972c0910429f3ab7006f07 (diff) | |
| parent | f851c4aa330e1064a66db50be62db2466f4fb768 (diff) | |
| download | redot-engine-ac591d9904e4e5cf7841b3e79caabf558d37db0e.tar.gz | |
Merge pull request #59911 from bruvzg/cppcheck_fixes
Diffstat (limited to 'core/math/face3.cpp')
| -rw-r--r-- | core/math/face3.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/face3.cpp b/core/math/face3.cpp index 5bc1bc25e6..fb92f6b0df 100644 --- a/core/math/face3.cpp +++ b/core/math/face3.cpp @@ -208,7 +208,7 @@ bool Face3::intersects_aabb(const AABB &p_aabb) const { /** TEST ALL EDGES **/ - Vector3 edge_norms[3] = { + const Vector3 edge_norms[3] = { vertex[0] - vertex[1], vertex[1] - vertex[2], vertex[2] - vertex[0], |
