diff options
author | Marcus Brummer <mbrlabs7@gmail.com> | 2020-12-12 12:24:31 +0100 |
---|---|---|
committer | Marcus Brummer <mbrlabs7@gmail.com> | 2020-12-12 12:45:06 +0100 |
commit | 56e5ca38d7850037137abb7072ef3fb453dfbf82 (patch) | |
tree | 2f6cd2d7b0f67b19e101b5370cd65bc96841ce77 /doc/classes | |
parent | 70c435272a3e7fa0071ede65bbcfa06223d93df9 (diff) |
Fixed Geometry2D::get_closest_points_between_segments docs
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Geometry2D.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Geometry2D.xml b/doc/classes/Geometry2D.xml index 4ff54d15ce..2c0d9b54d1 100644 --- a/doc/classes/Geometry2D.xml +++ b/doc/classes/Geometry2D.xml @@ -91,7 +91,7 @@ <argument index="3" name="q2" type="Vector2"> </argument> <description> - 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 [PackedVector2Array] 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 [PackedVector2Array] that contains this point on ([code]p1[/code], [code]q1[/code]) as well the accompanying point on ([code]p2[/code], [code]q2[/code]). </description> </method> <method name="intersect_polygons"> |