Rename Rect3 to AABB.

Fixes #12973.
This commit is contained in:
Ferenc Arn
2017-11-16 21:09:00 -05:00
parent b44cb4e3b9
commit d28763a4c1
138 changed files with 1203 additions and 1194 deletions

View File

@@ -178,9 +178,9 @@ ReflectionProbe::UpdateMode ReflectionProbe::get_update_mode() const {
return update_mode;
}
Rect3 ReflectionProbe::get_aabb() const {
AABB ReflectionProbe::get_aabb() const {
Rect3 aabb;
AABB aabb;
aabb.position = -origin_offset;
aabb.size = origin_offset + extents;
return aabb;