summaryrefslogtreecommitdiff
path: root/doc/classes/Vector2.xml
diff options
context:
space:
mode:
authorTomasz Chabora <kobewi4e@gmail.com>2020-08-03 22:55:25 +0200
committerTomasz Chabora <kobewi4e@gmail.com>2020-08-05 00:18:19 +0200
commita09078e64bf56577f22ab9da7276ee5a82d9dd8c (patch)
treebc07575428098326e1fc739d80e5de0728ebbab8 /doc/classes/Vector2.xml
parent9adf6d3441d4927bdbab7bcb03cfafe42249ba90 (diff)
Improve Vector2.angle() description
Diffstat (limited to 'doc/classes/Vector2.xml')
-rw-r--r--doc/classes/Vector2.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml
index c0d8628d88..11716f511b 100644
--- a/doc/classes/Vector2.xml
+++ b/doc/classes/Vector2.xml
@@ -43,7 +43,8 @@
<return type="float">
</return>
<description>
- Returns this vector's angle with respect to the X axis, or [code](1, 0)[/code] vector, in radians.
+ Returns this vector's angle with respect to the positive X axis, or [code](1, 0)[/code] vector, in radians.
+ For example, [code]Vector2.RIGHT.angle()[/code] will return zero, [code]Vector2.DOWN.angle()[/code] will return [code]PI / 2[/code] (a quarter turn, or 90 degrees), and [code]Vector2(1, -1).angle()[/code] will return [code]-PI / 4[/code] (a negative eighth turn, or -45 degrees).
Equivalent to the result of [method @GDScript.atan2] when called with the vector's [member y] and [member x] as parameters: [code]atan2(y, x)[/code].
</description>
</method>