diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-03 16:14:05 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-03 16:14:05 +0200 |
commit | a985d5960358466050612e95918bb5ba59fe6f43 (patch) | |
tree | edd4a11ee6b0a64d5f52a9a6b125326213055c3d | |
parent | d0a7dcd8c0b7e0d09d1f95020f36ec4f2f88115c (diff) | |
parent | fffed28f9a644c34e9db8c615677178f05d4f74a (diff) | |
download | redot-engine-a985d5960358466050612e95918bb5ba59fe6f43.tar.gz |
Merge pull request #96473 from LunaTheFoxgirl/patch-1
Fix ambiguity in `angle_difference` function documentation
-rw-r--r-- | doc/classes/@GlobalScope.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 63f5947280..49b8e34f8f 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -90,7 +90,7 @@ <param index="0" name="from" type="float" /> <param index="1" name="to" type="float" /> <description> - Returns the difference between the two angles, in the range of [code][-PI, +PI][/code]. When [param from] and [param to] are opposite, returns [code]-PI[/code] if [param from] is smaller than [param to], or [code]PI[/code] otherwise. + Returns the difference between the two angles (in radians), in the range of [code][-PI, +PI][/code]. When [param from] and [param to] are opposite, returns [code]-PI[/code] if [param from] is smaller than [param to], or [code]PI[/code] otherwise. </description> </method> <method name="asin"> |