summaryrefslogtreecommitdiff
path: root/scene/resources/cylinder_shape.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scene/resources/cylinder_shape.cpp')
-rw-r--r--scene/resources/cylinder_shape.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/resources/cylinder_shape.cpp b/scene/resources/cylinder_shape.cpp
index d9f6e4f054..b9b0d77a1b 100644
--- a/scene/resources/cylinder_shape.cpp
+++ b/scene/resources/cylinder_shape.cpp
@@ -62,6 +62,10 @@ Vector<Vector3> CylinderShape::get_debug_mesh_lines() {
return points;
}
+real_t CylinderShape::get_enclosing_radius() const {
+ return Vector2(radius, height * 0.5).length();
+}
+
void CylinderShape::_update_shape() {
Dictionary d;