From d3d34dc73b665cc2c9969c711e385f5ef3d1c86a Mon Sep 17 00:00:00 2001 From: Marcus Brummer Date: Sat, 12 Dec 2020 12:24:31 +0100 Subject: [PATCH] Fixed Geometry2D::get_closest_points_between_segments docs (cherry picked from commit 56e5ca38d7850037137abb7072ef3fb453dfbf82) --- doc/classes/Geometry.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Geometry.xml b/doc/classes/Geometry.xml index 4b5928eb498..8e676478f43 100644 --- a/doc/classes/Geometry.xml +++ b/doc/classes/Geometry.xml @@ -184,7 +184,7 @@ - Given the two 2D segments ([code]p1[/code], [code]p2[/code]) and ([code]q1[/code], [code]q2[/code]), finds those two points on the two segments that are closest to each other. Returns a [PoolVector2Array] that contains this point on ([code]p1[/code], [code]p2[/code]) as well the accompanying point on ([code]q1[/code], [code]q2[/code]). + Given the two 2D segments ([code]p1[/code], [code]q1[/code]) and ([code]p2[/code], [code]q2[/code]), finds those two points on the two segments that are closest to each other. Returns a [PoolVector2Array] that contains this point on ([code]p1[/code], [code]q1[/code]) as well the accompanying point on ([code]p2[/code], [code]q2[/code]).