From 7e5034958e99a81ce588a9c12990fc532ac4bb99 Mon Sep 17 00:00:00 2001 From: Julian Adamse Date: Fri, 5 Nov 2021 20:46:32 +0100 Subject: [PATCH] Fix the volume calculation for cylinders (cherry picked from commit 03903fdeec0023d4c504a7399d248257e6756f4c) --- servers/physics/shape_sw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/physics/shape_sw.h b/servers/physics/shape_sw.h index 0cd688dee5b..c0658ed954f 100644 --- a/servers/physics/shape_sw.h +++ b/servers/physics/shape_sw.h @@ -239,7 +239,7 @@ public: _FORCE_INLINE_ real_t get_height() const { return height; } _FORCE_INLINE_ real_t get_radius() const { return radius; } - virtual real_t get_area() const { return 4.0 / 3.0 * Math_PI * radius * radius * radius + height * Math_PI * radius * radius; } + virtual real_t get_area() const { return height * Math_PI * radius * radius; } virtual PhysicsServer::ShapeType get_type() const { return PhysicsServer::SHAPE_CAPSULE; }