Merge pull request #96473 from LunaTheFoxgirl/patch-1

Fix ambiguity in `angle_difference` function documentation
This commit is contained in:
Rémi Verschelde 2024-09-03 16:14:05 +02:00
commit a985d59603
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -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">