Rename AABB get_area to get_volume

This commit is contained in:
Brian Semrau
2021-11-04 21:01:59 -04:00
parent 70c82d9d3d
commit dc11e73bf0
7 changed files with 40 additions and 40 deletions

View File

@ -33,7 +33,7 @@
#include "core/string/print_string.h"
#include "core/variant/variant.h"
real_t AABB::get_area() const {
real_t AABB::get_volume() const {
return size.x * size.y * size.z;
}