diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-12 13:03:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 13:03:09 +0100 |
commit | 0762484473c1330c5d524d5cc3644d5e2b2e557c (patch) | |
tree | f0b89c3be8ede16cd5fa23a215d3e54c6102e56f /doc/classes | |
parent | 2760f5d0b401670e6ec976ac90ff345234fdfea3 (diff) | |
parent | 56e5ca38d7850037137abb7072ef3fb453dfbf82 (diff) |
Merge pull request #44317 from mbrlabs/geometry2d-docs
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"> |