diff --git a/core/math/face3.cpp b/core/math/face3.cpp index a7a5e91d51a..674c5068a8c 100644 --- a/core/math/face3.cpp +++ b/core/math/face3.cpp @@ -180,8 +180,7 @@ Vector3 Face3::get_median_point() const { } real_t Face3::get_area() const { - - return vec3_cross(vertex[0] - vertex[1], vertex[0] - vertex[2]).length(); + return vec3_cross(vertex[0] - vertex[1], vertex[0] - vertex[2]).length() * 0.5; } ClockDirection Face3::get_clock_dir() const {