diff options
author | great90 <897346026@qq.com> | 2021-12-19 11:51:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-19 11:51:14 +0800 |
commit | 10c91f8116dc6efdebbd7a4fccf3e2748ef05c47 (patch) | |
tree | 0e85b73741becf2af5dddfd00dd05f84be82304b | |
parent | 8485d0c53a55ee0295187a3144b390f35787b57d (diff) |
Fix variable name 'max_size' to 'min_size' in aabb
-rw-r--r-- | core/math/aabb.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/math/aabb.cpp b/core/math/aabb.cpp index 83726f46b5..0468d1e68b 100644 --- a/core/math/aabb.cpp +++ b/core/math/aabb.cpp @@ -286,14 +286,14 @@ int AABB::get_longest_axis_index() const { Vector3 AABB::get_shortest_axis() const { Vector3 axis(1, 0, 0); - real_t max_size = size.x; + real_t min_size = size.x; - if (size.y < max_size) { + if (size.y < min_size) { axis = Vector3(0, 1, 0); - max_size = size.y; + min_size = size.y; } - if (size.z < max_size) { + if (size.z < min_size) { axis = Vector3(0, 0, 1); } @@ -302,14 +302,14 @@ Vector3 AABB::get_shortest_axis() const { int AABB::get_shortest_axis_index() const { int axis = 0; - real_t max_size = size.x; + real_t min_size = size.x; - if (size.y < max_size) { + if (size.y < min_size) { axis = 1; - max_size = size.y; + min_size = size.y; } - if (size.z < max_size) { + if (size.z < min_size) { axis = 2; } |