From 73fb7f0fc076ca8579504cf7f0851999feba266b Mon Sep 17 00:00:00 2001 From: beyarkay Date: Wed, 20 Sep 2023 16:38:43 +0200 Subject: [PATCH] [docs] update AABB `get_support` description This is a simple documentation edit. It updates the description of the get_support method in AABB to explain what a support point is. --- doc/classes/AABB.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/AABB.xml b/doc/classes/AABB.xml index 0aa493361d4d..a803e4f106ba 100644 --- a/doc/classes/AABB.xml +++ b/doc/classes/AABB.xml @@ -126,7 +126,7 @@ - Returns the support point in a given direction. This is useful for collision detection algorithms. + Returns the vertex of the AABB that's the farthest in a given direction. This point is commonly known as the support point in collision detection algorithms.